From 094209226e44b811c36f7c455dacc641fe1db52d Mon Sep 17 00:00:00 2001 From: Victoria Litvinova Date: Tue, 18 Oct 2022 11:28:33 -0700 Subject: [PATCH 01/10] update code --- .../azure/cli/core/profiles/_shared.py | 2 +- .../azure/cli/command_modules/iot/custom.py | 12 +++++++++--- .../iot/tests/latest/test_iot_commands.py | 6 ++++++ src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- src/azure-cli/setup.py | 2 +- 7 files changed, 20 insertions(+), 8 deletions(-) diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index 804ee5f784f..f79347b3694 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -243,7 +243,7 @@ def default_api_version(self): }), ResourceType.MGMT_MSI: '2022-01-31-preview', ResourceType.MGMT_APPSERVICE: '2022-03-01', - ResourceType.MGMT_IOTHUB: '2021-07-02', + ResourceType.MGMT_IOTHUB: '2022-04-30-preview', ResourceType.MGMT_IOTDPS: '2021-10-15', ResourceType.MGMT_IOTCENTRAL: '2021-11-01-preview', ResourceType.MGMT_ARO: '2022-04-01', 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 b9c4ce7780d..32fa70bee18 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/custom.py +++ b/src/azure-cli/azure/cli/command_modules/iot/custom.py @@ -4,6 +4,7 @@ # -------------------------------------------------------------------------------------------- # pylint: disable=no-self-use,no-member,line-too-long,too-few-public-methods,too-many-lines,too-many-arguments,too-many-locals +import json import re from enum import Enum from knack.log import get_logger @@ -278,7 +279,10 @@ def iot_dps_linked_hub_create( raise InvalidArgumentValueError("Please provide a valid IoT Hub connection string.") hub_client = iot_hub_service_factory(cmd.cli_ctx) - location = iot_hub_get(cmd, hub_client, hub_name=hub_name, resource_group_name=hub_resource_group).location + try: + location = iot_hub_get(cmd, hub_client, hub_name=hub_name, resource_group_name=hub_resource_group).location + except CLIError: + raise RequiredArgumentMissingError("Please provide the IoT Hub location.") resource_group_name = _ensure_dps_resource_group_name(client, resource_group_name, dps_name) @@ -491,7 +495,6 @@ def iot_hub_create(cmd, client, hub_name, resource_group_name, location=None, fileupload_storage_container_name=None, fileupload_sas_ttl=1, fileupload_storage_authentication_type=None, - fileupload_storage_container_uri=None, fileupload_storage_identity=None, min_tls_version=None, tags=None, @@ -546,7 +549,6 @@ def iot_hub_create(cmd, client, hub_name, resource_group_name, location=None, connection_string=fileupload_storage_connectionstring if fileupload_storage_connectionstring else '', container_name=fileupload_storage_container_name if fileupload_storage_container_name else '', authentication_type=fileupload_storage_authentication_type if fileupload_storage_authentication_type else None, - container_uri=fileupload_storage_container_uri if fileupload_storage_container_uri else '', identity=ManagedIdentity(user_assigned_identity=fileupload_storage_identity) if fileupload_storage_identity else None) properties = IotHubProperties(event_hub_endpoints=event_hub_dic, @@ -1129,6 +1131,10 @@ def iot_hub_route_update(cmd, client, hub_name, route_name, source_type=None, en def iot_hub_route_test(cmd, client, hub_name, route_name=None, source_type=None, body=None, app_properties=None, system_properties=None, resource_group_name=None): + if app_properties: + app_properties = json.loads(app_properties) + if system_properties: + system_properties = json.loads(system_properties) resource_group_name = _ensure_hub_resource_group_name(client, resource_group_name, hub_name) route_message = RoutingMessage( body=body, 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 0fb1f93d3e7..e11493b4333 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 @@ -3,6 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- # pylint: disable=too-many-statements +import json from unittest import mock from azure.cli.testsdk import ResourceGroupPreparer, ScenarioTest, StorageAccountPreparer @@ -343,6 +344,11 @@ def test_iot_hub(self, resource_group, resource_group_location, storage_account) self.cmd('iot hub route test --hub-name {0} -g {1} -n {2}'.format(hub, rg, route_name), checks=[self.check('result', 'true')]) + # Test 'az iot hub route test' + self.kwargs["route_properties"] = json.dumps({"body": 4}) + self.cmd('iot hub route test --hub-name {0} -g {1} -n {2} --sp {route_properties} --ap {route_properties}'.format(hub, rg, route_name), + checks=[self.check('result', 'true')]) + # Test 'az iot hub route test' self.cmd('iot hub route test --hub-name {0} -g {1} -s {2}'.format(hub, rg, source_type), checks=[self.check('length(routes[*])', 1), diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 93c6680a690..60529c772d7 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -49,7 +49,7 @@ azure-mgmt-extendedlocation==1.0.0b2 azure-mgmt-hdinsight==9.0.0 azure-mgmt-imagebuilder==1.1.0 azure-mgmt-iotcentral==10.0.0b1 -azure-mgmt-iothub==2.2.0 +azure-mgmt-iothub==2.3.0 azure-mgmt-iothubprovisioningservices==1.1.0 azure-mgmt-keyvault==10.1.0 azure-mgmt-kusto==0.3.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 8e0aa9144c3..60c67ead022 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -49,7 +49,7 @@ azure-mgmt-extendedlocation==1.0.0b2 azure-mgmt-hdinsight==9.0.0 azure-mgmt-imagebuilder==1.1.0 azure-mgmt-iotcentral==10.0.0b1 -azure-mgmt-iothub==2.2.0 +azure-mgmt-iothub==2.3.0 azure-mgmt-iothubprovisioningservices==1.1.0 azure-mgmt-keyvault==10.1.0 azure-mgmt-kusto==0.3.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index c045ee17034..30be89a2505 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -49,7 +49,7 @@ azure-mgmt-extendedlocation==1.0.0b2 azure-mgmt-hdinsight==9.0.0 azure-mgmt-imagebuilder==1.1.0 azure-mgmt-iotcentral==10.0.0b1 -azure-mgmt-iothub==2.2.0 +azure-mgmt-iothub==2.3.0 azure-mgmt-iothubprovisioningservices==1.1.0 azure-mgmt-keyvault==10.1.0 azure-mgmt-kusto==0.3.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 69fd0d297d3..a440b117d05 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -92,7 +92,7 @@ 'azure-mgmt-hdinsight~=9.0.0', 'azure-mgmt-imagebuilder~=1.1.0', 'azure-mgmt-iotcentral~=10.0.0b1', - 'azure-mgmt-iothub==2.2.0', + 'azure-mgmt-iothub==2.3.0', 'azure-mgmt-iothubprovisioningservices==1.1.0', 'azure-mgmt-keyvault==10.1.0', 'azure-mgmt-kusto~=0.3.0', From abfceef2d648acaacc71217b163386ca8b494196 Mon Sep 17 00:00:00 2001 From: Victoria Litvinova Date: Tue, 18 Oct 2022 14:36:28 -0700 Subject: [PATCH 02/10] regenerate tests --- .../test_certificate_lifecycle.yaml | 262 +- .../recordings/test_hub_file_upload.yaml | 2188 ++-- .../latest/recordings/test_identity_hub.yaml | 4102 +++++--- .../tests/latest/recordings/test_iot_hub.yaml | 9056 +++++++++++++---- .../iot/tests/latest/test_iot_commands.py | 3 +- 5 files changed, 11475 insertions(+), 4136 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_certificate_lifecycle.yaml b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_certificate_lifecycle.yaml index 94799c84907..2efcf326ade 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_certificate_lifecycle.yaml +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_certificate_lifecycle.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000002?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002","name":"clitest.rg000002","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-07-07T22:09:53Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002","name":"clitest.rg000002","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-10-18T18:56:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:09:55 GMT + - Tue, 18 Oct 2022 18:56:48 GMT expires: - '-1' pragma: @@ -66,15 +66,15 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003?api-version=2022-04-30-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003","name":"iot-hub-for-cert-test000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000002","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNGE0MzAyNTUtYzViMC00YWU5LWJmY2UtNjAwOWJjOTM0ZDVlO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2ZiODNhMjMtZDZlNC00MTYzLWJhODctMTA3ZWRmNGFjOWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:09:59 GMT + - Tue, 18 Oct 2022 18:56:53 GMT expires: - '-1' pragma: @@ -112,9 +112,55 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNGE0MzAyNTUtYzViMC00YWU5LWJmY2UtNjAwOWJjOTM0ZDVlO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2ZiODNhMjMtZDZlNC00MTYzLWJhODctMTA3ZWRmNGFjOWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 18:56: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2ZiODNhMjMtZDZlNC00MTYzLWJhODctMTA3ZWRmNGFjOWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -126,7 +172,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:10:29 GMT + - Tue, 18 Oct 2022 18:57:23 GMT expires: - '-1' pragma: @@ -158,9 +204,9 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNGE0MzAyNTUtYzViMC00YWU5LWJmY2UtNjAwOWJjOTM0ZDVlO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2ZiODNhMjMtZDZlNC00MTYzLWJhODctMTA3ZWRmNGFjOWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -172,7 +218,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:10:59 GMT + - Tue, 18 Oct 2022 18:57:53 GMT expires: - '-1' pragma: @@ -204,9 +250,9 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNGE0MzAyNTUtYzViMC00YWU5LWJmY2UtNjAwOWJjOTM0ZDVlO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2ZiODNhMjMtZDZlNC00MTYzLWJhODctMTA3ZWRmNGFjOWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -218,7 +264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:11:30 GMT + - Tue, 18 Oct 2022 18:58:23 GMT expires: - '-1' pragma: @@ -250,9 +296,9 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNGE0MzAyNTUtYzViMC00YWU5LWJmY2UtNjAwOWJjOTM0ZDVlO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2ZiODNhMjMtZDZlNC00MTYzLWJhODctMTA3ZWRmNGFjOWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -264,7 +310,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:00 GMT + - Tue, 18 Oct 2022 18:58:53 GMT expires: - '-1' pragma: @@ -296,9 +342,9 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNGE0MzAyNTUtYzViMC00YWU5LWJmY2UtNjAwOWJjOTM0ZDVlO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfN2ZiODNhMjMtZDZlNC00MTYzLWJhODctMTA3ZWRmNGFjOWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -310,7 +356,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:30 GMT + - Tue, 18 Oct 2022 18:59:24 GMT expires: - '-1' pragma: @@ -342,22 +388,22 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003","name":"iot-hub-for-cert-test000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000002","etag":"AAAADGvXw7k=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-cert-test000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-cert-testxodu","endpoint":"sb://iothub-ns-iot-hub-fo-20100823-08b5e22506.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-07T22:09:59.2433333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003","name":"iot-hub-for-cert-test000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000002","etag":"AAAADHO8Gvo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-cert-test000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-cert-testoqan","endpoint":"sb://iothub-ns-iot-hub-fo-22325990-c602a7ea70.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:56:52.6733333Z"}}' headers: cache-control: - no-cache content-length: - - '1693' + - '1700' content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:30 GMT + - Tue, 18 Oct 2022 18:59:25 GMT expires: - '-1' pragma: @@ -389,9 +435,9 @@ interactions: ParameterSetName: - --hub-name -g -n -p User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates?api-version=2022-04-30-preview response: body: string: '{"value":[]}' @@ -403,7 +449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:31 GMT + - Tue, 18 Oct 2022 18:59:25 GMT expires: - '-1' pragma: @@ -422,7 +468,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSWNjUWpBZE8zcUljd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQW5waHppZWlsMkFQNkVMR3RWeXJYDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQp1OXpvRjN2U2dxME5pSXNKU3JQQWNKUVVZTXBjNkdCdEpKMUs5SW5qOEwrc3hVam9tZ29LKzcxOXNiL29ScmZtDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQp2UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQk5HNVlvN1NsNnpBRmxJWUo4QWpJTng5bkU1a01nDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQp0NWZsOU1JcndvR09iSHVCTjFoM1lmNVUwZWhkcTNjUDZ6K216WGY3R1diSXJFeHdKbVR4V2RDanMrQnVoMW1ZDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"}}' + body: '{"properties": {"certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSVM5MmVSeTZTVVZZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXRpUUptNnZ3ZjdJczNidUZydE9DDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQo4TlhPdlNZL2dQUFF5US9sZ2J3aGovbVJhNTVOR3NFNGFBQ2g1K2xvUTBhaExiUXJ5aEdETTZMSXVtYm82NTB2DQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQp1UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQUZMMk5oQjYwR3l2YzNoWXNESE5VUkNHN0I4MnpCDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQpScFR6YUdTTVZzS1E5SjMrUm9VOFdwbVJPUjJ6RGpOUGV5M0dBVVQvMGxUMHh5ZTdrTlp4bjlFT1RvSU9OaHpYDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"}}' headers: Accept: - application/json @@ -439,14 +485,14 @@ interactions: ParameterSetName: - --hub-name -g -n -p User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004?api-version=2022-04-30-preview response: body: - string: '{"properties":{"subject":"TESTCERT000001","expiry":"Sun, 10 Jul 2022 - 22:09:53 GMT","thumbprint":"DB3C8A09D32E35412DFED32E246624749A75353E","isVerified":false,"created":"Mon, - 01 Jan 0001 00:00:00 GMT","updated":"Thu, 07 Jul 2022 22:12:33 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSWNjUWpBZE8zcUljd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQW5waHppZWlsMkFQNkVMR3RWeXJYDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQp1OXpvRjN2U2dxME5pSXNKU3JQQWNKUVVZTXBjNkdCdEpKMUs5SW5qOEwrc3hVam9tZ29LKzcxOXNiL29ScmZtDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQp2UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQk5HNVlvN1NsNnpBRmxJWUo4QWpJTng5bkU1a01nDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQp0NWZsOU1JcndvR09iSHVCTjFoM1lmNVUwZWhkcTNjUDZ6K216WGY3R1diSXJFeHdKbVR4V2RDanMrQnVoMW1ZDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjFhMDA4MWVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTUxMDAwMCI="}' + string: '{"properties":{"subject":"TESTCERT000001","expiry":"Fri, 21 Oct 2022 + 18:56:46 GMT","thumbprint":"745D4BE0AA8A035F269A997110043C6CE59E3C39","isVerified":false,"created":"Mon, + 01 Jan 0001 00:00:00 GMT","updated":"Tue, 18 Oct 2022 18:59:26 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSVM5MmVSeTZTVVZZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXRpUUptNnZ3ZjdJczNidUZydE9DDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQo4TlhPdlNZL2dQUFF5US9sZ2J3aGovbVJhNTVOR3NFNGFBQ2g1K2xvUTBhaExiUXJ5aEdETTZMSXVtYm82NTB2DQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQp1UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQUZMMk5oQjYwR3l2YzNoWXNESE5VUkNHN0I4MnpCDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQpScFR6YUdTTVZzS1E5SjMrUm9VOFdwbVJPUjJ6RGpOUGV5M0dBVVQvMGxUMHh5ZTdrTlp4bjlFT1RvSU9OaHpYDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjI0MDFkZTA3LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzhlMDAwMCI="}' headers: cache-control: - no-cache @@ -455,7 +501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:32 GMT + - Tue, 18 Oct 2022 18:59:26 GMT expires: - '-1' pragma: @@ -471,7 +517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -489,14 +535,14 @@ interactions: ParameterSetName: - --hub-name -g -n -p --verified User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates?api-version=2022-04-30-preview response: body: - string: '{"value":[{"properties":{"subject":"TESTCERT000001","expiry":"Sun, - 10 Jul 2022 22:09:53 GMT","thumbprint":"DB3C8A09D32E35412DFED32E246624749A75353E","isVerified":false,"created":"Mon, - 01 Jan 0001 00:00:00 GMT","updated":"Thu, 07 Jul 2022 22:12:33 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSWNjUWpBZE8zcUljd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQW5waHppZWlsMkFQNkVMR3RWeXJYDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQp1OXpvRjN2U2dxME5pSXNKU3JQQWNKUVVZTXBjNkdCdEpKMUs5SW5qOEwrc3hVam9tZ29LKzcxOXNiL29ScmZtDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQp2UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQk5HNVlvN1NsNnpBRmxJWUo4QWpJTng5bkU1a01nDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQp0NWZsOU1JcndvR09iSHVCTjFoM1lmNVUwZWhkcTNjUDZ6K216WGY3R1diSXJFeHdKbVR4V2RDanMrQnVoMW1ZDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjFhMDA4MWVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTUxMDAwMCI="}]}' + string: '{"value":[{"properties":{"subject":"TESTCERT000001","expiry":"Fri, + 21 Oct 2022 18:56:46 GMT","thumbprint":"745D4BE0AA8A035F269A997110043C6CE59E3C39","isVerified":false,"created":"Mon, + 01 Jan 0001 00:00:00 GMT","updated":"Tue, 18 Oct 2022 18:59:26 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSVM5MmVSeTZTVVZZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXRpUUptNnZ3ZjdJczNidUZydE9DDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQo4TlhPdlNZL2dQUFF5US9sZ2J3aGovbVJhNTVOR3NFNGFBQ2g1K2xvUTBhaExiUXJ5aEdETTZMSXVtYm82NTB2DQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQp1UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQUZMMk5oQjYwR3l2YzNoWXNESE5VUkNHN0I4MnpCDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQpScFR6YUdTTVZzS1E5SjMrUm9VOFdwbVJPUjJ6RGpOUGV5M0dBVVQvMGxUMHh5ZTdrTlp4bjlFT1RvSU9OaHpYDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjI0MDFkZTA3LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzhlMDAwMCI="}]}' headers: cache-control: - no-cache @@ -505,7 +551,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:33 GMT + - Tue, 18 Oct 2022 18:59:26 GMT expires: - '-1' pragma: @@ -524,7 +570,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"isVerified": true, "certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSWNjUWpBZE8zcUljd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQW5waHppZWlsMkFQNkVMR3RWeXJYDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQp1OXpvRjN2U2dxME5pSXNKU3JQQWNKUVVZTXBjNkdCdEpKMUs5SW5qOEwrc3hVam9tZ29LKzcxOXNiL29ScmZtDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQp2UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQk5HNVlvN1NsNnpBRmxJWUo4QWpJTng5bkU1a01nDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQp0NWZsOU1JcndvR09iSHVCTjFoM1lmNVUwZWhkcTNjUDZ6K216WGY3R1diSXJFeHdKbVR4V2RDanMrQnVoMW1ZDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"}}' + body: '{"properties": {"isVerified": true, "certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSVM5MmVSeTZTVVZZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXRpUUptNnZ3ZjdJczNidUZydE9DDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQo4TlhPdlNZL2dQUFF5US9sZ2J3aGovbVJhNTVOR3NFNGFBQ2g1K2xvUTBhaExiUXJ5aEdETTZMSXVtYm82NTB2DQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQp1UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQUZMMk5oQjYwR3l2YzNoWXNESE5VUkNHN0I4MnpCDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQpScFR6YUdTTVZzS1E5SjMrUm9VOFdwbVJPUjJ6RGpOUGV5M0dBVVQvMGxUMHh5ZTdrTlp4bjlFT1RvSU9OaHpYDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"}}' headers: Accept: - application/json @@ -541,14 +587,14 @@ interactions: ParameterSetName: - --hub-name -g -n -p --verified User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/verified-certificate-000005?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/verified-certificate-000005?api-version=2022-04-30-preview response: body: - string: '{"properties":{"subject":"TESTCERT000001","expiry":"Sun, 10 Jul 2022 - 22:09:53 GMT","thumbprint":"DB3C8A09D32E35412DFED32E246624749A75353E","isVerified":true,"created":"Mon, - 01 Jan 0001 00:00:00 GMT","updated":"Thu, 07 Jul 2022 22:12:35 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSWNjUWpBZE8zcUljd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQW5waHppZWlsMkFQNkVMR3RWeXJYDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQp1OXpvRjN2U2dxME5pSXNKU3JQQWNKUVVZTXBjNkdCdEpKMUs5SW5qOEwrc3hVam9tZ29LKzcxOXNiL29ScmZtDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQp2UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQk5HNVlvN1NsNnpBRmxJWUo4QWpJTng5bkU1a01nDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQp0NWZsOU1JcndvR09iSHVCTjFoM1lmNVUwZWhkcTNjUDZ6K216WGY3R1diSXJFeHdKbVR4V2RDanMrQnVoMW1ZDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/verified-certificate-000005","name":"verified-certificate-000005","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjFhMDA4NGVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTUzMDAwMCI="}' + string: '{"properties":{"subject":"TESTCERT000001","expiry":"Fri, 21 Oct 2022 + 18:56:46 GMT","thumbprint":"745D4BE0AA8A035F269A997110043C6CE59E3C39","isVerified":true,"created":"Mon, + 01 Jan 0001 00:00:00 GMT","updated":"Tue, 18 Oct 2022 18:59:27 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSVM5MmVSeTZTVVZZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXRpUUptNnZ3ZjdJczNidUZydE9DDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQo4TlhPdlNZL2dQUFF5US9sZ2J3aGovbVJhNTVOR3NFNGFBQ2g1K2xvUTBhaExiUXJ5aEdETTZMSXVtYm82NTB2DQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQp1UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQUZMMk5oQjYwR3l2YzNoWXNESE5VUkNHN0I4MnpCDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQpScFR6YUdTTVZzS1E5SjMrUm9VOFdwbVJPUjJ6RGpOUGV5M0dBVVQvMGxUMHh5ZTdrTlp4bjlFT1RvSU9OaHpYDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/verified-certificate-000005","name":"verified-certificate-000005","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjI0MDE0YjA4LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzhmMDAwMCI="}' headers: cache-control: - no-cache @@ -557,7 +603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:34 GMT + - Tue, 18 Oct 2022 18:59:27 GMT expires: - '-1' pragma: @@ -573,7 +619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -591,16 +637,16 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates?api-version=2022-04-30-preview response: body: - string: '{"value":[{"properties":{"subject":"TESTCERT000001","expiry":"Sun, - 10 Jul 2022 22:09:53 GMT","thumbprint":"DB3C8A09D32E35412DFED32E246624749A75353E","isVerified":false,"created":"Mon, - 01 Jan 0001 00:00:00 GMT","updated":"Thu, 07 Jul 2022 22:12:33 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSWNjUWpBZE8zcUljd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQW5waHppZWlsMkFQNkVMR3RWeXJYDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQp1OXpvRjN2U2dxME5pSXNKU3JQQWNKUVVZTXBjNkdCdEpKMUs5SW5qOEwrc3hVam9tZ29LKzcxOXNiL29ScmZtDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQp2UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQk5HNVlvN1NsNnpBRmxJWUo4QWpJTng5bkU1a01nDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQp0NWZsOU1JcndvR09iSHVCTjFoM1lmNVUwZWhkcTNjUDZ6K216WGY3R1diSXJFeHdKbVR4V2RDanMrQnVoMW1ZDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjFhMDA4MWVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTUxMDAwMCI="},{"properties":{"subject":"TESTCERT000001","expiry":"Sun, - 10 Jul 2022 22:09:53 GMT","thumbprint":"DB3C8A09D32E35412DFED32E246624749A75353E","isVerified":true,"created":"Mon, - 01 Jan 0001 00:00:00 GMT","updated":"Thu, 07 Jul 2022 22:12:35 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSWNjUWpBZE8zcUljd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQW5waHppZWlsMkFQNkVMR3RWeXJYDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQp1OXpvRjN2U2dxME5pSXNKU3JQQWNKUVVZTXBjNkdCdEpKMUs5SW5qOEwrc3hVam9tZ29LKzcxOXNiL29ScmZtDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQp2UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQk5HNVlvN1NsNnpBRmxJWUo4QWpJTng5bkU1a01nDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQp0NWZsOU1JcndvR09iSHVCTjFoM1lmNVUwZWhkcTNjUDZ6K216WGY3R1diSXJFeHdKbVR4V2RDanMrQnVoMW1ZDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/verified-certificate-000005","name":"verified-certificate-000005","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjFhMDA4NGVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTUzMDAwMCI="}]}' + string: '{"value":[{"properties":{"subject":"TESTCERT000001","expiry":"Fri, + 21 Oct 2022 18:56:46 GMT","thumbprint":"745D4BE0AA8A035F269A997110043C6CE59E3C39","isVerified":false,"created":"Mon, + 01 Jan 0001 00:00:00 GMT","updated":"Tue, 18 Oct 2022 18:59:26 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSVM5MmVSeTZTVVZZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXRpUUptNnZ3ZjdJczNidUZydE9DDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQo4TlhPdlNZL2dQUFF5US9sZ2J3aGovbVJhNTVOR3NFNGFBQ2g1K2xvUTBhaExiUXJ5aEdETTZMSXVtYm82NTB2DQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQp1UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQUZMMk5oQjYwR3l2YzNoWXNESE5VUkNHN0I4MnpCDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQpScFR6YUdTTVZzS1E5SjMrUm9VOFdwbVJPUjJ6RGpOUGV5M0dBVVQvMGxUMHh5ZTdrTlp4bjlFT1RvSU9OaHpYDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjI0MDFkZTA3LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzhlMDAwMCI="},{"properties":{"subject":"TESTCERT000001","expiry":"Fri, + 21 Oct 2022 18:56:46 GMT","thumbprint":"745D4BE0AA8A035F269A997110043C6CE59E3C39","isVerified":true,"created":"Mon, + 01 Jan 0001 00:00:00 GMT","updated":"Tue, 18 Oct 2022 18:59:27 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSVM5MmVSeTZTVVZZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXRpUUptNnZ3ZjdJczNidUZydE9DDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQo4TlhPdlNZL2dQUFF5US9sZ2J3aGovbVJhNTVOR3NFNGFBQ2g1K2xvUTBhaExiUXJ5aEdETTZMSXVtYm82NTB2DQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQp1UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQUZMMk5oQjYwR3l2YzNoWXNESE5VUkNHN0I4MnpCDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQpScFR6YUdTTVZzS1E5SjMrUm9VOFdwbVJPUjJ6RGpOUGV5M0dBVVQvMGxUMHh5ZTdrTlp4bjlFT1RvSU9OaHpYDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/verified-certificate-000005","name":"verified-certificate-000005","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjI0MDE0YjA4LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzhmMDAwMCI="}]}' headers: cache-control: - no-cache @@ -609,7 +655,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:35 GMT + - Tue, 18 Oct 2022 18:59:28 GMT expires: - '-1' pragma: @@ -641,14 +687,14 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004?api-version=2022-04-30-preview response: body: - string: '{"properties":{"subject":"TESTCERT000001","expiry":"Sun, 10 Jul 2022 - 22:09:53 GMT","thumbprint":"DB3C8A09D32E35412DFED32E246624749A75353E","isVerified":false,"created":"Mon, - 01 Jan 0001 00:00:00 GMT","updated":"Thu, 07 Jul 2022 22:12:33 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSWNjUWpBZE8zcUljd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQW5waHppZWlsMkFQNkVMR3RWeXJYDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQp1OXpvRjN2U2dxME5pSXNKU3JQQWNKUVVZTXBjNkdCdEpKMUs5SW5qOEwrc3hVam9tZ29LKzcxOXNiL29ScmZtDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQp2UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQk5HNVlvN1NsNnpBRmxJWUo4QWpJTng5bkU1a01nDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQp0NWZsOU1JcndvR09iSHVCTjFoM1lmNVUwZWhkcTNjUDZ6K216WGY3R1diSXJFeHdKbVR4V2RDanMrQnVoMW1ZDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjFhMDA4MWVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTUxMDAwMCI="}' + string: '{"properties":{"subject":"TESTCERT000001","expiry":"Fri, 21 Oct 2022 + 18:56:46 GMT","thumbprint":"745D4BE0AA8A035F269A997110043C6CE59E3C39","isVerified":false,"created":"Mon, + 01 Jan 0001 00:00:00 GMT","updated":"Tue, 18 Oct 2022 18:59:26 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSVM5MmVSeTZTVVZZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXRpUUptNnZ3ZjdJczNidUZydE9DDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQo4TlhPdlNZL2dQUFF5US9sZ2J3aGovbVJhNTVOR3NFNGFBQ2g1K2xvUTBhaExiUXJ5aEdETTZMSXVtYm82NTB2DQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQp1UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQUZMMk5oQjYwR3l2YzNoWXNESE5VUkNHN0I4MnpCDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQpScFR6YUdTTVZzS1E5SjMrUm9VOFdwbVJPUjJ6RGpOUGV5M0dBVVQvMGxUMHh5ZTdrTlp4bjlFT1RvSU9OaHpYDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjI0MDFkZTA3LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzhlMDAwMCI="}' headers: cache-control: - no-cache @@ -657,7 +703,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:37 GMT + - Tue, 18 Oct 2022 18:59:29 GMT expires: - '-1' pragma: @@ -689,18 +735,18 @@ interactions: Content-Length: - '0' If-Match: - - IjFhMDA4MWVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTUxMDAwMCI= + - IjI0MDFkZTA3LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzhlMDAwMCI= ParameterSetName: - --hub-name -g -n --etag User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004/generateVerificationCode?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004/generateVerificationCode?api-version=2022-04-30-preview response: body: - string: '{"properties":{"verificationCode":"C7E4A2762A309F5B7B72179AF7BDD55C95BAD3683B75CDA7","subject":"TESTCERT000001","expiry":"Sun, - 10 Jul 2022 22:09:53 GMT","thumbprint":"DB3C8A09D32E35412DFED32E246624749A75353E","isVerified":false,"created":"Mon, - 01 Jan 0001 00:00:00 GMT","updated":"Thu, 07 Jul 2022 22:12:38 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSWNjUWpBZE8zcUljd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQW5waHppZWlsMkFQNkVMR3RWeXJYDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQp1OXpvRjN2U2dxME5pSXNKU3JQQWNKUVVZTXBjNkdCdEpKMUs5SW5qOEwrc3hVam9tZ29LKzcxOXNiL29ScmZtDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQp2UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQk5HNVlvN1NsNnpBRmxJWUo4QWpJTng5bkU1a01nDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQp0NWZsOU1JcndvR09iSHVCTjFoM1lmNVUwZWhkcTNjUDZ6K216WGY3R1diSXJFeHdKbVR4V2RDanMrQnVoMW1ZDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjFhMDA4NmVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTU2MDAwMCI="}' + string: '{"properties":{"verificationCode":"6986118193D14464DCCBE2377A8A949984D16A4FAD7D74B3","subject":"TESTCERT000001","expiry":"Fri, + 21 Oct 2022 18:56:46 GMT","thumbprint":"745D4BE0AA8A035F269A997110043C6CE59E3C39","isVerified":false,"created":"Mon, + 01 Jan 0001 00:00:00 GMT","updated":"Tue, 18 Oct 2022 18:59:30 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSVM5MmVSeTZTVVZZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXRpUUptNnZ3ZjdJczNidUZydE9DDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQo4TlhPdlNZL2dQUFF5US9sZ2J3aGovbVJhNTVOR3NFNGFBQ2g1K2xvUTBhaExiUXJ5aEdETTZMSXVtYm82NTB2DQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQp1UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQUZMMk5oQjYwR3l2YzNoWXNESE5VUkNHN0I4MnpCDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQpScFR6YUdTTVZzS1E5SjMrUm9VOFdwbVJPUjJ6RGpOUGV5M0dBVVQvMGxUMHh5ZTdrTlp4bjlFT1RvSU9OaHpYDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjI0MDE1NzA5LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzkyMDAwMCI="}' headers: cache-control: - no-cache @@ -709,7 +755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:37 GMT + - Tue, 18 Oct 2022 18:59:29 GMT expires: - '-1' pragma: @@ -730,7 +776,7 @@ interactions: code: 200 message: OK - request: - body: '{"certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDM2pDQ0FjYWdBd0lCQWdJSUNaaFFmRlludGN3d0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TVRJek9Gb1hEVEl5DQpNRGN4TURJeU1USXpPRm93T3pFNU1EY0dBMVVFQXd3d1F6ZEZORUV5TnpZeVFUTXdPVVkxUWpkQ056SXhOemxCDQpSamRDUkVRMU5VTTVOVUpCUkRNMk9ETkNOelZEUkVFM01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBDQpNSUlCQ2dLQ0FRRUFxK0MzWnBySlFuRUNnK0Q1akpXZ3ZyZ0RJelZZcEVNVlJiSnhEMmFGTnY3WEZCOGkrUjhMDQpRVXA5d0lOODVkTkxLNDJMa0hOYjZsamdkOWlNTWxPNS83T2VxKzFYY3FyVjliUzd6WUphclZZTEpKdUo0eDR1DQphdlhlOGx2eUxuWEJ4S0RaRVdyTksyWlVOUVMxZlZkYkZxTzh3NXFDZ1ZqQmRTajRtTVQ2cWpKNHpQcU9nMWJYDQppWmZ6RkJCVHhXU1JGRWNYdFFOaDJIbW5odXI3MTNodWRsSUpacU1kZGo4dEZGVTh5SVZIanVIeDRRaHRocFBnDQp5VVVwZXBRNThsTHNMR1NNRHhUSHVmVjBuM0UxaEgydVVZYi8zVlgybncrUWV5aUhOc2NTa09mbFJzMklMWWZvDQplTzdic0IrZDlWTHJIN1diS2JWeURQdVh4cXVwVkdBWk53SURBUUFCTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCDQpBUUFZQzh1SGlLRWlqWm9kTHhRbG53bnpNY1BxYklwRjdiZ1grb0lpQjdCQTVZRE5TQW9pWVhnMjAwbHFSRFhFDQpMbXdQOHg2RjdlZUVvV3NWOE5wakN0cE9YNWo2ak9PZVFLUmdYYUd0NTdEN2FoMGFiUUF0QjF2S2lYSVVEZk9RDQpSUUhqR2c4emtqeE50dnJ6OE5DRXRpRFNPSkZQUDZDNW9GeWs4S3REeXdKTHI4MkpSaVRKd3k3d1NMNHB0aHhwDQoxRWJtQ1dJQWJ5LzNicDJWNGRlSThYTDdhT2p5WVVueHF5V3JsZmNsc21qZ0NxOGQzUGtFdW0rZVRUU2N1UzAwDQppbUhmTjMyMkRVQklBU1lYdXBPNUtOS0xGWTkxalYrdUJnUHQ1bDRiYkNYSG10Z0hJSTZ1NUFZUU9Fc0dpOElSDQpyb1pZM0w5S2dlRDdNTlY3Y0RXYzhXVkMNCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0NCg=="}' + body: '{"certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDM2pDQ0FjYWdBd0lCQWdJSUxrNTRNZTRFZCtZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRrek1Gb1hEVEl5DQpNVEF5TVRFNE5Ua3pNRm93T3pFNU1EY0dBMVVFQXd3d05qazROakV4T0RFNU0wUXhORFEyTkVSRFEwSkZNak0zDQpOMEU0UVRrME9UazRORVF4TmtFMFJrRkVOMFEzTkVJek1JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBDQpNSUlCQ2dLQ0FRRUE2QnBtM0YrbUNzelptVzdSVFVSNlVmOGZTcTJaUjZjNW9aZEU1T0pPWlhJVjIyV2ZWQUJlDQpNbkNLN2dNOFRCTUkxYTl3TGdBTWN3ZVZhekYvWVc2VEZjRExSUUdGS2pQZldaUDJBcVZtWWpCTkdLL1Fhdk5TDQpqSk14bFJTMXZsRHF1bmt5cmJaZ3p3NFAvTHkrU1NJTlY3eWRpQkNGR1ZOaG45WnhuOGpoa3ZvRFhCTmZ2eE9uDQpBNmg1dnJXMUJiOGtjbUx2M3hVY2FxeTlLbEhINyt2R2gvazRRZ0hZdmVFZHZlMjkzL1ZCMEdmMTFMUWllOUlnDQpmZThaOGsvbnZYdXhvcVRUdlk2MnVrYjhtelZkajBad1dWOXgwOVNPUVhucldVa0JLUnBFd0U5UEE1bTlUT1BNDQpkODlPNlFYVnNucDBFRzB4OHJOcXgwbzZqam5PODV3ZFpRSURBUUFCTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCDQpBUUNqQ0k3Uy9zckY5c0o3TmdlTmhreC91ZWY2RytCcWtWR3V2ZHlPYXo3ODQwUDJodjJmKzJSczZpVEdUbHY0DQprRHYxeitpdnE1UXZiTkhIY2JJNHY2UVVmT2FKbmtxZzA3anVqc0psZFY2WGozL3JVRFNvVkoyZURSQzNubGZRDQpkSktwTEhsTm5TTEJXOEhIN1V1UExVZjdkeTZkdU1RY1l3SGd2VlFpSDNCSnppMU5kU2tUUjJscWtHYVp4UlJ1DQoyL2V2Nlg0YnNQQ0RsenYwbnI2VVpLZHJBVWd4TG84MHVacjNhY0w0VGtteGVPdXZDT0NNMXZyckNCVnF1cU82DQpTaUt5azJuL0dmM3MwaHVaS3RZSThuZndFRU9qWU85MkJacjV4ODJOOW9XeU5wK2R5R0VNNnNFMUl2Q0VPaGFZDQpCLzF0NytNSGdsSUtmemo1a0c4c2lkcjUNCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0NCg=="}' headers: Accept: - application/json @@ -745,18 +791,18 @@ interactions: Content-Type: - application/json If-Match: - - IjFhMDA4NmVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTU2MDAwMCI= + - IjI0MDE1NzA5LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzkyMDAwMCI= ParameterSetName: - --hub-name -g -n -p --etag User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004/verify?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004/verify?api-version=2022-04-30-preview response: body: - string: '{"properties":{"subject":"TESTCERT000001","expiry":"Sun, 10 Jul 2022 - 22:09:53 GMT","thumbprint":"DB3C8A09D32E35412DFED32E246624749A75353E","isVerified":true,"created":"Mon, - 01 Jan 0001 00:00:00 GMT","updated":"Thu, 07 Jul 2022 22:12:39 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSWNjUWpBZE8zcUljd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQW5waHppZWlsMkFQNkVMR3RWeXJYDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQp1OXpvRjN2U2dxME5pSXNKU3JQQWNKUVVZTXBjNkdCdEpKMUs5SW5qOEwrc3hVam9tZ29LKzcxOXNiL29ScmZtDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQp2UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQk5HNVlvN1NsNnpBRmxJWUo4QWpJTng5bkU1a01nDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQp0NWZsOU1JcndvR09iSHVCTjFoM1lmNVUwZWhkcTNjUDZ6K216WGY3R1diSXJFeHdKbVR4V2RDanMrQnVoMW1ZDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjFhMDA4OWVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTU3MDAwMCI="}' + string: '{"properties":{"subject":"TESTCERT000001","expiry":"Fri, 21 Oct 2022 + 18:56:46 GMT","thumbprint":"745D4BE0AA8A035F269A997110043C6CE59E3C39","isVerified":true,"created":"Mon, + 01 Jan 0001 00:00:00 GMT","updated":"Tue, 18 Oct 2022 18:59:31 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSVM5MmVSeTZTVVZZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXRpUUptNnZ3ZjdJczNidUZydE9DDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQo4TlhPdlNZL2dQUFF5US9sZ2J3aGovbVJhNTVOR3NFNGFBQ2g1K2xvUTBhaExiUXJ5aEdETTZMSXVtYm82NTB2DQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQp1UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQUZMMk5oQjYwR3l2YzNoWXNESE5VUkNHN0I4MnpCDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQpScFR6YUdTTVZzS1E5SjMrUm9VOFdwbVJPUjJ6RGpOUGV5M0dBVVQvMGxUMHh5ZTdrTlp4bjlFT1RvSU9OaHpYDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjI0MDFkZDA5LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzkzMDAwMCI="}' headers: cache-control: - no-cache @@ -765,7 +811,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:38 GMT + - Tue, 18 Oct 2022 18:59:30 GMT expires: - '-1' pragma: @@ -799,16 +845,16 @@ interactions: ParameterSetName: - --hub-name -g -n -p User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates?api-version=2022-04-30-preview response: body: - string: '{"value":[{"properties":{"subject":"TESTCERT000001","expiry":"Sun, - 10 Jul 2022 22:09:53 GMT","thumbprint":"DB3C8A09D32E35412DFED32E246624749A75353E","isVerified":true,"created":"Mon, - 01 Jan 0001 00:00:00 GMT","updated":"Thu, 07 Jul 2022 22:12:39 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSWNjUWpBZE8zcUljd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQW5waHppZWlsMkFQNkVMR3RWeXJYDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQp1OXpvRjN2U2dxME5pSXNKU3JQQWNKUVVZTXBjNkdCdEpKMUs5SW5qOEwrc3hVam9tZ29LKzcxOXNiL29ScmZtDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQp2UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQk5HNVlvN1NsNnpBRmxJWUo4QWpJTng5bkU1a01nDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQp0NWZsOU1JcndvR09iSHVCTjFoM1lmNVUwZWhkcTNjUDZ6K216WGY3R1diSXJFeHdKbVR4V2RDanMrQnVoMW1ZDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjFhMDA4OWVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTU3MDAwMCI="},{"properties":{"subject":"TESTCERT000001","expiry":"Sun, - 10 Jul 2022 22:09:53 GMT","thumbprint":"DB3C8A09D32E35412DFED32E246624749A75353E","isVerified":true,"created":"Mon, - 01 Jan 0001 00:00:00 GMT","updated":"Thu, 07 Jul 2022 22:12:35 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSWNjUWpBZE8zcUljd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQW5waHppZWlsMkFQNkVMR3RWeXJYDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQp1OXpvRjN2U2dxME5pSXNKU3JQQWNKUVVZTXBjNkdCdEpKMUs5SW5qOEwrc3hVam9tZ29LKzcxOXNiL29ScmZtDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQp2UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQk5HNVlvN1NsNnpBRmxJWUo4QWpJTng5bkU1a01nDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQp0NWZsOU1JcndvR09iSHVCTjFoM1lmNVUwZWhkcTNjUDZ6K216WGY3R1diSXJFeHdKbVR4V2RDanMrQnVoMW1ZDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/verified-certificate-000005","name":"verified-certificate-000005","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjFhMDA4NGVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTUzMDAwMCI="}]}' + string: '{"value":[{"properties":{"subject":"TESTCERT000001","expiry":"Fri, + 21 Oct 2022 18:56:46 GMT","thumbprint":"745D4BE0AA8A035F269A997110043C6CE59E3C39","isVerified":true,"created":"Mon, + 01 Jan 0001 00:00:00 GMT","updated":"Tue, 18 Oct 2022 18:59:31 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSVM5MmVSeTZTVVZZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXRpUUptNnZ3ZjdJczNidUZydE9DDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQo4TlhPdlNZL2dQUFF5US9sZ2J3aGovbVJhNTVOR3NFNGFBQ2g1K2xvUTBhaExiUXJ5aEdETTZMSXVtYm82NTB2DQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQp1UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQUZMMk5oQjYwR3l2YzNoWXNESE5VUkNHN0I4MnpCDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQpScFR6YUdTTVZzS1E5SjMrUm9VOFdwbVJPUjJ6RGpOUGV5M0dBVVQvMGxUMHh5ZTdrTlp4bjlFT1RvSU9OaHpYDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004","name":"certificate-000004","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjI0MDFkZDA5LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzkzMDAwMCI="},{"properties":{"subject":"TESTCERT000001","expiry":"Fri, + 21 Oct 2022 18:56:46 GMT","thumbprint":"745D4BE0AA8A035F269A997110043C6CE59E3C39","isVerified":true,"created":"Mon, + 01 Jan 0001 00:00:00 GMT","updated":"Tue, 18 Oct 2022 18:59:27 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQpNSUlDeGpDQ0FhNmdBd0lCQWdJSVM5MmVSeTZTVVZZd0RRWUpLb1pJaHZjTkFRRUxCUUF3SXpFaE1COEdBMVVFDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQpNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDQVFFQXRpUUptNnZ3ZjdJczNidUZydE9DDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQo4TlhPdlNZL2dQUFF5US9sZ2J3aGovbVJhNTVOR3NFNGFBQ2g1K2xvUTBhaExiUXJ5aEdETTZMSXVtYm82NTB2DQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQp1UUlEQVFBQk1BMEdDU3FHU0liM0RRRUJDd1VBQTRJQkFRQUZMMk5oQjYwR3l2YzNoWXNESE5VUkNHN0I4MnpCDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQpScFR6YUdTTVZzS1E5SjMrUm9VOFdwbVJPUjJ6RGpOUGV5M0dBVVQvMGxUMHh5ZTdrTlp4bjlFT1RvSU9OaHpYDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/verified-certificate-000005","name":"verified-certificate-000005","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjI0MDE0YjA4LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzhmMDAwMCI="}]}' headers: cache-control: - no-cache @@ -817,7 +863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:39 GMT + - Tue, 18 Oct 2022 18:59:31 GMT expires: - '-1' pragma: @@ -836,7 +882,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQ0KTUlJQ3hqQ0NBYTZnQXdJQkFnSUljY1FqQWRPM3FJY3dEUVlKS29aSWh2Y05BUUVMQlFBd0l6RWhNQjhHQTFVRQ0NCkF3d1lWRVZUVkVORlVsUm1iVzEzWW10MWVXbHRjVFEyWkd4ME1CNFhEVEl5TURjd056SXlNRGsxTTFvWERUSXkNDQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQ0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUFucGh6aWVpbDJBUDZFTEd0VnlyWA0NCmV2V0lZK1B1ckdUVXJxRGtYS2NhY2tlY0xtTXFnbytjWk9ZbWxhWU8zS082aXo4NUQ3aUNRUzRDMXhvaVMrc3gNDQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQ0KdTl6b0YzdlNncTBOaUlzSlNyUEFjSlFVWU1wYzZHQnRKSjFLOUluajhMK3N4VWpvbWdvSys3MTlzYi9vUnJmbQ0NCjlqcXFxalllOFF4aFpYUkh1TFE1emwwY2ZtSHlxNWI3MVBBcGEzNzMrYmptMkcvbzY2TTd6M09LYXEzUnRpaHANDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQ0KdlFJREFRQUJNQTBHQ1NxR1NJYjNEUUVCQ3dVQUE0SUJBUUJORzVZbzdTbDZ6QUZsSVlKOEFqSU54OW5FNWtNZw0NClhsalIzS2dHYlJDY1lXcGZWTHF3UmdaaVdMdGlsSmpGM2d6S2hNeWFjeG41cjB6WlA3Z20rWit5Q3kyNmcxOUMNDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQ0KdDVmbDlNSXJ3b0dPYkh1Qk4xaDNZZjVVMGVoZHEzY1A2eittelhmN0dXYklyRXh3Sm1UeFdkQ2pzK0J1aDFtWQ0NCnlDMzNxRzArQ3EyMkJ1RUZVOGlseUVTSWlhT2xPR3U3MGhmYjhMVlNxMm54aW9DdGRobFp1TjlQVzBxTjVLaFQNDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0NCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0NDQoNCi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQ0NCk1JSUN4akNDQWE2Z0F3SUJBZ0lJY2NRakFkTzNxSWN3RFFZSktvWklodmNOQVFFTEJRQXdJekVoTUI4R0ExVUUNDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQ0KTURjeE1ESXlNRGsxTTFvd0l6RWhNQjhHQTFVRUF3d1lWRVZUVkVORlVsUm1iVzEzWW10MWVXbHRjVFEyWkd4MA0NCk1JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQkNnS0NBUUVBbnBoemllaWwyQVA2RUxHdFZ5clgNDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQ0KWWZpdXZDUzZVcE9kSDlJa0poMlVlVjZoanBTQnZhVTdZRmFsQk5KZFl1UENDYy9nRFRKQzN3a3pDcVBWdnpQUg0NCnU5em9GM3ZTZ3EwTmlJc0pTclBBY0pRVVlNcGM2R0J0SkoxSzlJbmo4TCtzeFVqb21nb0srNzE5c2Ivb1JyZm0NDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQ0KNFJYckUxbW93TEEwNjZ6OW5YUlZTNENUMmlCUUkyRWFmb3ZyY0I4V3BBOVBxVzR0VExyYjNhcDA4aDRJUUlESg0NCnZRSURBUUFCTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCQVFCTkc1WW83U2w2ekFGbElZSjhBaklOeDluRTVrTWcNDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQ0Kbm1RdDBSekZHYzRJS0NvaXRSY1FzelVQRDlWYW1qMG16eURWaWx0aHZDYWVtZnUwTnlRdjFlM0pVOCs5YzlKdg0NCnQ1Zmw5TUlyd29HT2JIdUJOMWgzWWY1VTBlaGRxM2NQNnorbXpYZjdHV2JJckV4d0ptVHhXZENqcytCdWgxbVkNDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQ0KbE9XTFFtdzJUVE53NUNrSHNwMElEVzE2TXhpL0N1U2NqU1VBMGZ6QmZpVVJnM0RBQlBDRmUyYlkNDQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tDQ0K"}}' + body: '{"properties": {"certificate": "LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQ0KTUlJQ3hqQ0NBYTZnQXdJQkFnSUlTOTJlUnk2U1VWWXdEUVlKS29aSWh2Y05BUUVMQlFBd0l6RWhNQjhHQTFVRQ0NCkF3d1lWRVZUVkVORlVsUnBhR2d5TjJac1oySnVhbk4xWkhOeU1CNFhEVEl5TVRBeE9ERTROVFkwTmxvWERUSXkNDQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQ0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUF0aVFKbTZ2d2Y3SXMzYnVGcnRPQw0NCmlIc0FpTkU3TG5icExhK0d3MlVtb01xYjgvQlpRZkc4UDd5N1NHblB0Z0V6U0FTN09ZbWFzRjFpWVgwTi9lYksNDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQ0KOE5YT3ZTWS9nUFBReVEvbGdid2hqL21SYTU1TkdzRTRhQUNoNStsb1EwYWhMYlFyeWhHRE02TEl1bWJvNjUwdg0NCm55RHlCejRBMW9NcjZEaEZnM2ZleEVLZDJrNm8rYVp0UExHRUZqWGw0S2NhUEVrR09hWWE5SU42d0lBUE1IZEgNDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQ0KdVFJREFRQUJNQTBHQ1NxR1NJYjNEUUVCQ3dVQUE0SUJBUUFGTDJOaEI2MEd5dmMzaFlzREhOVVJDRzdCODJ6Qg0NCmFBTE9KdkF5UnIwbG1Vakp3eUJuZTJ2U25EeCsrbnV1R0dRbWJuVDlzcER3c3BxV1ljZHNwQkROSmw2eHIwdnUNDQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQ0KUnBUemFHU01Wc0tROUozK1JvVThXcG1ST1IyekRqTlBleTNHQVVULzBsVDB4eWU3a05aeG45RU9Ub0lPTmh6WA0NCnV3d3h4aFkwempHdWh1L0sxN1VoMU9lNGxRajR0VTBCbGZiYUtaaFhUVEN6eWEvQ0NUd1ZxVk1wUlBtbkxmK2MNDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0NCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0NDQoNCi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQ0NCk1JSUN4akNDQWE2Z0F3SUJBZ0lJUzkyZVJ5NlNVVll3RFFZSktvWklodmNOQVFFTEJRQXdJekVoTUI4R0ExVUUNDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQ0KTVRBeU1URTROVFkwTmxvd0l6RWhNQjhHQTFVRUF3d1lWRVZUVkVORlVsUnBhR2d5TjJac1oySnVhbk4xWkhOeQ0NCk1JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQkNnS0NBUUVBdGlRSm02dndmN0lzM2J1RnJ0T0MNDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQ0KcWRCOWhrNll5SjJvMTRrOUpnWnFMeDBpalQrNGRkSmJDMDMrOStobU8vOWhreXpOWnVQYUZlR2xlYmNJT3Erag0NCjhOWE92U1kvZ1BQUXlRL2xnYndoai9tUmE1NU5Hc0U0YUFDaDUrbG9RMGFoTGJRcnloR0RNNkxJdW1ibzY1MHYNDQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQ0KS2VsN1NqUUwrbTF5ZnB0OFZuTG1sVTRmbTVLMVlUcHpadUxsTTZTK0hDZkZRR25QOTFNZUpLVWVqdFBQVHVVdA0NCnVRSURBUUFCTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCQVFBRkwyTmhCNjBHeXZjM2hZc0RITlVSQ0c3QjgyekINDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQ0KT2VzY1djejBNVWkweDdrQ2h2OWdGckk1UlJOcGlWQjJ1OUdJUFNFZ0U1QWh6SStOdzJNL2Fmbng1L1dkNEdGSQ0NClJwVHphR1NNVnNLUTlKMytSb1U4V3BtUk9SMnpEak5QZXkzR0FVVC8wbFQweHllN2tOWnhuOUVPVG9JT05oelgNDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQ0KWUg1VitNbFRMT2JvdlgxUEpTbGQxcGFYNTNlRUswTC9rcGE3MElrc2Z6TG5neDBIZndVVFJvOU4NDQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tDQ0K"}}' headers: Accept: - application/json @@ -853,14 +899,14 @@ interactions: ParameterSetName: - --hub-name -g -n -p User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000006?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000006?api-version=2022-04-30-preview response: body: - string: '{"properties":{"subject":"TESTCERT000001","expiry":"Sun, 10 Jul 2022 - 22:09:53 GMT","thumbprint":"DB3C8A09D32E35412DFED32E246624749A75353E","isVerified":false,"created":"Mon, - 01 Jan 0001 00:00:00 GMT","updated":"Thu, 07 Jul 2022 22:12:41 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQ0KTUlJQ3hqQ0NBYTZnQXdJQkFnSUljY1FqQWRPM3FJY3dEUVlKS29aSWh2Y05BUUVMQlFBd0l6RWhNQjhHQTFVRQ0NCkF3d1lWRVZUVkVORlVsUm1iVzEzWW10MWVXbHRjVFEyWkd4ME1CNFhEVEl5TURjd056SXlNRGsxTTFvWERUSXkNDQpNRGN4TURJeU1EazFNMW93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxSbWJXMTNZbXQxZVdsdGNUUTJaR3gwDQ0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUFucGh6aWVpbDJBUDZFTEd0VnlyWA0NCmV2V0lZK1B1ckdUVXJxRGtYS2NhY2tlY0xtTXFnbytjWk9ZbWxhWU8zS082aXo4NUQ3aUNRUzRDMXhvaVMrc3gNDQpZZml1dkNTNlVwT2RIOUlrSmgyVWVWNmhqcFNCdmFVN1lGYWxCTkpkWXVQQ0NjL2dEVEpDM3drekNxUFZ2elBSDQ0KdTl6b0YzdlNncTBOaUlzSlNyUEFjSlFVWU1wYzZHQnRKSjFLOUluajhMK3N4VWpvbWdvSys3MTlzYi9vUnJmbQ0NCjlqcXFxalllOFF4aFpYUkh1TFE1emwwY2ZtSHlxNWI3MVBBcGEzNzMrYmptMkcvbzY2TTd6M09LYXEzUnRpaHANDQo0UlhyRTFtb3dMQTA2Nno5blhSVlM0Q1QyaUJRSTJFYWZvdnJjQjhXcEE5UHFXNHRUTHJiM2FwMDhoNElRSURKDQ0KdlFJREFRQUJNQTBHQ1NxR1NJYjNEUUVCQ3dVQUE0SUJBUUJORzVZbzdTbDZ6QUZsSVlKOEFqSU54OW5FNWtNZw0NClhsalIzS2dHYlJDY1lXcGZWTHF3UmdaaVdMdGlsSmpGM2d6S2hNeWFjeG41cjB6WlA3Z20rWit5Q3kyNmcxOUMNDQpubVF0MFJ6RkdjNElLQ29pdFJjUXN6VVBEOVZhbWowbXp5RFZpbHRodkNhZW1mdTBOeVF2MWUzSlU4KzljOUp2DQ0KdDVmbDlNSXJ3b0dPYkh1Qk4xaDNZZjVVMGVoZHEzY1A2eittelhmN0dXYklyRXh3Sm1UeFdkQ2pzK0J1aDFtWQ0NCnlDMzNxRzArQ3EyMkJ1RUZVOGlseUVTSWlhT2xPR3U3MGhmYjhMVlNxMm54aW9DdGRobFp1TjlQVzBxTjVLaFQNDQpsT1dMUW13MlRUTnc1Q2tIc3AwSURXMTZNeGkvQ3VTY2pTVUEwZnpCZmlVUmczREFCUENGZTJiWQ0NCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0NDQoNCi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQ0NCk1JSUN4akNDQWE2Z0F3SUJBZ0lJY2NRakFkTzNxSWN3RFFZSktvWklodmNOQVFFTEJRQXdJekVoTUI4R0ExVUUNDQpBd3dZVkVWVFZFTkZVbFJtYlcxM1ltdDFlV2x0Y1RRMlpHeDBNQjRYRFRJeU1EY3dOekl5TURrMU0xb1hEVEl5DQ0KTURjeE1ESXlNRGsxTTFvd0l6RWhNQjhHQTFVRUF3d1lWRVZUVkVORlVsUm1iVzEzWW10MWVXbHRjVFEyWkd4MA0NCk1JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQkNnS0NBUUVBbnBoemllaWwyQVA2RUxHdFZ5clgNDQpldldJWStQdXJHVFVycURrWEtjYWNrZWNMbU1xZ28rY1pPWW1sYVlPM0tPNml6ODVEN2lDUVM0QzF4b2lTK3N4DQ0KWWZpdXZDUzZVcE9kSDlJa0poMlVlVjZoanBTQnZhVTdZRmFsQk5KZFl1UENDYy9nRFRKQzN3a3pDcVBWdnpQUg0NCnU5em9GM3ZTZ3EwTmlJc0pTclBBY0pRVVlNcGM2R0J0SkoxSzlJbmo4TCtzeFVqb21nb0srNzE5c2Ivb1JyZm0NDQo5anFxcWpZZThReGhaWFJIdUxRNXpsMGNmbUh5cTViNzFQQXBhMzczK2JqbTJHL282Nk03ejNPS2FxM1J0aWhwDQ0KNFJYckUxbW93TEEwNjZ6OW5YUlZTNENUMmlCUUkyRWFmb3ZyY0I4V3BBOVBxVzR0VExyYjNhcDA4aDRJUUlESg0NCnZRSURBUUFCTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCQVFCTkc1WW83U2w2ekFGbElZSjhBaklOeDluRTVrTWcNDQpYbGpSM0tnR2JSQ2NZV3BmVkxxd1JnWmlXTHRpbEpqRjNnektoTXlhY3huNXIwelpQN2dtK1oreUN5MjZnMTlDDQ0Kbm1RdDBSekZHYzRJS0NvaXRSY1FzelVQRDlWYW1qMG16eURWaWx0aHZDYWVtZnUwTnlRdjFlM0pVOCs5YzlKdg0NCnQ1Zmw5TUlyd29HT2JIdUJOMWgzWWY1VTBlaGRxM2NQNnorbXpYZjdHV2JJckV4d0ptVHhXZENqcytCdWgxbVkNDQp5QzMzcUcwK0NxMjJCdUVGVThpbHlFU0lpYU9sT0d1NzBoZmI4TFZTcTJueGlvQ3RkaGxadU45UFcwcU41S2hUDQ0KbE9XTFFtdzJUVE53NUNrSHNwMElEVzE2TXhpL0N1U2NqU1VBMGZ6QmZpVVJnM0RBQlBDRmUyYlkNDQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tDQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000006","name":"certificate-000006","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjFhMDA4YWVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTU5MDAwMCI="}' + string: '{"properties":{"subject":"TESTCERT000001","expiry":"Fri, 21 Oct 2022 + 18:56:46 GMT","thumbprint":"745D4BE0AA8A035F269A997110043C6CE59E3C39","isVerified":false,"created":"Mon, + 01 Jan 0001 00:00:00 GMT","updated":"Tue, 18 Oct 2022 18:59:33 GMT","certificate":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tDQ0KTUlJQ3hqQ0NBYTZnQXdJQkFnSUlTOTJlUnk2U1VWWXdEUVlKS29aSWh2Y05BUUVMQlFBd0l6RWhNQjhHQTFVRQ0NCkF3d1lWRVZUVkVORlVsUnBhR2d5TjJac1oySnVhbk4xWkhOeU1CNFhEVEl5TVRBeE9ERTROVFkwTmxvWERUSXkNDQpNVEF5TVRFNE5UWTBObG93SXpFaE1COEdBMVVFQXd3WVZFVlRWRU5GVWxScGFHZ3lOMlpzWjJKdWFuTjFaSE55DQ0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUF0aVFKbTZ2d2Y3SXMzYnVGcnRPQw0NCmlIc0FpTkU3TG5icExhK0d3MlVtb01xYjgvQlpRZkc4UDd5N1NHblB0Z0V6U0FTN09ZbWFzRjFpWVgwTi9lYksNDQpxZEI5aGs2WXlKMm8xNGs5SmdacUx4MGlqVCs0ZGRKYkMwMys5K2htTy85aGt5ek5adVBhRmVHbGViY0lPcStqDQ0KOE5YT3ZTWS9nUFBReVEvbGdid2hqL21SYTU1TkdzRTRhQUNoNStsb1EwYWhMYlFyeWhHRE02TEl1bWJvNjUwdg0NCm55RHlCejRBMW9NcjZEaEZnM2ZleEVLZDJrNm8rYVp0UExHRUZqWGw0S2NhUEVrR09hWWE5SU42d0lBUE1IZEgNDQpLZWw3U2pRTCttMXlmcHQ4Vm5MbWxVNGZtNUsxWVRwelp1TGxNNlMrSENmRlFHblA5MU1lSktVZWp0UFBUdVV0DQ0KdVFJREFRQUJNQTBHQ1NxR1NJYjNEUUVCQ3dVQUE0SUJBUUFGTDJOaEI2MEd5dmMzaFlzREhOVVJDRzdCODJ6Qg0NCmFBTE9KdkF5UnIwbG1Vakp3eUJuZTJ2U25EeCsrbnV1R0dRbWJuVDlzcER3c3BxV1ljZHNwQkROSmw2eHIwdnUNDQpPZXNjV2N6ME1VaTB4N2tDaHY5Z0ZySTVSUk5waVZCMnU5R0lQU0VnRTVBaHpJK053Mk0vYWZueDUvV2Q0R0ZJDQ0KUnBUemFHU01Wc0tROUozK1JvVThXcG1ST1IyekRqTlBleTNHQVVULzBsVDB4eWU3a05aeG45RU9Ub0lPTmh6WA0NCnV3d3h4aFkwempHdWh1L0sxN1VoMU9lNGxRajR0VTBCbGZiYUtaaFhUVEN6eWEvQ0NUd1ZxVk1wUlBtbkxmK2MNDQpZSDVWK01sVExPYm92WDFQSlNsZDFwYVg1M2VFSzBML2twYTcwSWtzZnpMbmd4MEhmd1VUUm85Tg0NCi0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0NDQoNCi0tLS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0tLQ0NCk1JSUN4akNDQWE2Z0F3SUJBZ0lJUzkyZVJ5NlNVVll3RFFZSktvWklodmNOQVFFTEJRQXdJekVoTUI4R0ExVUUNDQpBd3dZVkVWVFZFTkZVbFJwYUdneU4yWnNaMkp1YW5OMVpITnlNQjRYRFRJeU1UQXhPREU0TlRZME5sb1hEVEl5DQ0KTVRBeU1URTROVFkwTmxvd0l6RWhNQjhHQTFVRUF3d1lWRVZUVkVORlVsUnBhR2d5TjJac1oySnVhbk4xWkhOeQ0NCk1JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQkNnS0NBUUVBdGlRSm02dndmN0lzM2J1RnJ0T0MNDQppSHNBaU5FN0xuYnBMYStHdzJVbW9NcWI4L0JaUWZHOFA3eTdTR25QdGdFelNBUzdPWW1hc0YxaVlYME4vZWJLDQ0KcWRCOWhrNll5SjJvMTRrOUpnWnFMeDBpalQrNGRkSmJDMDMrOStobU8vOWhreXpOWnVQYUZlR2xlYmNJT3Erag0NCjhOWE92U1kvZ1BQUXlRL2xnYndoai9tUmE1NU5Hc0U0YUFDaDUrbG9RMGFoTGJRcnloR0RNNkxJdW1ibzY1MHYNDQpueUR5Qno0QTFvTXI2RGhGZzNmZXhFS2QyazZvK2FadFBMR0VGalhsNEtjYVBFa0dPYVlhOUlONndJQVBNSGRIDQ0KS2VsN1NqUUwrbTF5ZnB0OFZuTG1sVTRmbTVLMVlUcHpadUxsTTZTK0hDZkZRR25QOTFNZUpLVWVqdFBQVHVVdA0NCnVRSURBUUFCTUEwR0NTcUdTSWIzRFFFQkN3VUFBNElCQVFBRkwyTmhCNjBHeXZjM2hZc0RITlVSQ0c3QjgyekINDQphQUxPSnZBeVJyMGxtVWpKd3lCbmUydlNuRHgrK251dUdHUW1iblQ5c3BEd3NwcVdZY2RzcEJETkpsNnhyMHZ1DQ0KT2VzY1djejBNVWkweDdrQ2h2OWdGckk1UlJOcGlWQjJ1OUdJUFNFZ0U1QWh6SStOdzJNL2Fmbng1L1dkNEdGSQ0NClJwVHphR1NNVnNLUTlKMytSb1U4V3BtUk9SMnpEak5QZXkzR0FVVC8wbFQweHllN2tOWnhuOUVPVG9JT05oelgNDQp1d3d4eGhZMHpqR3VodS9LMTdVaDFPZTRsUWo0dFUwQmxmYmFLWmhYVFRDenlhL0NDVHdWcVZNcFJQbW5MZitjDQ0KWUg1VitNbFRMT2JvdlgxUEpTbGQxcGFYNTNlRUswTC9rcGE3MElrc2Z6TG5neDBIZndVVFJvOU4NDQotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tDQ0K"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000006","name":"certificate-000006","type":"Microsoft.Devices/IotHubs/Certificates","etag":"IjI0MDFhYTBhLTAwMDAtMDcwMC0wMDAwLTYzNGVmNzk1MDAwMCI="}' headers: cache-control: - no-cache @@ -869,7 +915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 07 Jul 2022 22:12:40 GMT + - Tue, 18 Oct 2022 18:59:32 GMT expires: - '-1' pragma: @@ -903,13 +949,13 @@ interactions: Content-Length: - '0' If-Match: - - IjFhMDA4OWVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTU3MDAwMCI= + - IjI0MDFkZDA5LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzkzMDAwMCI= ParameterSetName: - --hub-name -g -n --etag User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000004?api-version=2022-04-30-preview response: body: string: '' @@ -919,7 +965,7 @@ interactions: content-length: - '0' date: - - Thu, 07 Jul 2022 22:12:42 GMT + - Tue, 18 Oct 2022 18:59:33 GMT expires: - '-1' pragma: @@ -949,13 +995,13 @@ interactions: Content-Length: - '0' If-Match: - - IjFhMDA4NGVkLTAwMDAtMDcwMC0wMDAwLTYyYzc1YTUzMDAwMCI= + - IjI0MDE0YjA4LTAwMDAtMDcwMC0wMDAwLTYzNGVmNzhmMDAwMCI= ParameterSetName: - --hub-name -g -n --etag User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/verified-certificate-000005?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/verified-certificate-000005?api-version=2022-04-30-preview response: body: string: '' @@ -965,7 +1011,7 @@ interactions: content-length: - '0' date: - - Thu, 07 Jul 2022 22:12:43 GMT + - Tue, 18 Oct 2022 18:59:35 GMT expires: - '-1' pragma: @@ -999,9 +1045,9 @@ interactions: ParameterSetName: - --hub-name -g -n --etag User-Agent: - - AZURECLI/2.38.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000006?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000002/providers/Microsoft.Devices/IotHubs/iot-hub-for-cert-test000003/certificates/certificate-000006?api-version=2022-04-30-preview response: body: string: '' @@ -1011,7 +1057,7 @@ interactions: content-length: - '0' date: - - Thu, 07 Jul 2022 22:12:44 GMT + - Tue, 18 Oct 2022 18:59:37 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_hub_file_upload.yaml b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_hub_file_upload.yaml index 4d558a52097..41e34064cb1 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_hub_file_upload.yaml +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_hub_file_upload.yaml @@ -13,44 +13,41 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2022-05-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/azext","name":"azext","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-15T07:20:26.3629732Z","key2":"2021-10-15T07:20:26.3629732Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T07:20:26.2379798Z","primaryEndpoints":{"dfs":"https://azext.dfs.core.windows.net/","web":"https://azext.z13.web.core.windows.net/","blob":"https://azext.blob.core.windows.net/","queue":"https://azext.queue.core.windows.net/","table":"https://azext.table.core.windows.net/","file":"https://azext.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azext-secondary.dfs.core.windows.net/","web":"https://azext-secondary.z13.web.core.windows.net/","blob":"https://azext-secondary.blob.core.windows.net/","queue":"https://azext-secondary.queue.core.windows.net/","table":"https://azext-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bez-rg/providers/Microsoft.Storage/storageAccounts/bezstorage0815","name":"bezstorage0815","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-15T07:11:10.1759953Z","key2":"2022-08-15T07:11:10.1759953Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-15T07:11:10.7541205Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-15T07:11:10.7541205Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-15T07:11:09.6916203Z","primaryEndpoints":{"dfs":"https://bezstorage0815.dfs.core.windows.net/","web":"https://bezstorage0815.z13.web.core.windows.net/","blob":"https://bezstorage0815.blob.core.windows.net/","queue":"https://bezstorage0815.queue.core.windows.net/","table":"https://bezstorage0815.table.core.windows.net/","file":"https://bezstorage0815.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://bezstorage0815-secondary.dfs.core.windows.net/","web":"https://bezstorage0815-secondary.z13.web.core.windows.net/","blob":"https://bezstorage0815-secondary.blob.core.windows.net/","queue":"https://bezstorage0815-secondary.queue.core.windows.net/","table":"https://bezstorage0815-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"dfs":"https://clitestresultstac.dfs.core.windows.net/","web":"https://clitestresultstac.z13.web.core.windows.net/","blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestresultstac-secondary.dfs.core.windows.net/","web":"https://clitestresultstac-secondary.z13.web.core.windows.net/","blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/galleryapptestaccount","name":"galleryapptestaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-20T02:51:38.9977139Z","key2":"2021-10-20T02:51:38.9977139Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T02:51:38.8727156Z","primaryEndpoints":{"dfs":"https://galleryapptestaccount.dfs.core.windows.net/","web":"https://galleryapptestaccount.z13.web.core.windows.net/","blob":"https://galleryapptestaccount.blob.core.windows.net/","queue":"https://galleryapptestaccount.queue.core.windows.net/","table":"https://galleryapptestaccount.table.core.windows.net/","file":"https://galleryapptestaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"identity":{"principalId":"4442e275-7210-4a69-81e7-b7c0955882b5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg/providers/Microsoft.Storage/storageAccounts/hangstorage","name":"hangstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"kk":"zz","--kk":"zz"},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-04-22T03:09:52.5634047Z","key2":"2022-04-22T03:09:52.5634047Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"isSftpEnabled":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-22T03:09:52.5790274Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-22T03:09:52.5790274Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-22T03:09:52.4227640Z","primaryEndpoints":{"dfs":"https://hangstorage.dfs.core.windows.net/","web":"https://hangstorage.z13.web.core.windows.net/","blob":"https://hangstorage.blob.core.windows.net/","queue":"https://hangstorage.queue.core.windows.net/","table":"https://hangstorage.table.core.windows.net/","file":"https://hangstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"dfs":"https://portal2clistorage.dfs.core.windows.net/","web":"https://portal2clistorage.z13.web.core.windows.net/","blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://portal2clistorage-secondary.dfs.core.windows.net/","web":"https://portal2clistorage-secondary.z13.web.core.windows.net/","blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/privatepackage","name":"privatepackage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-19T08:53:09.0238938Z","key2":"2021-10-19T08:53:09.0238938Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-19T08:53:08.9301661Z","primaryEndpoints":{"dfs":"https://privatepackage.dfs.core.windows.net/","web":"https://privatepackage.z13.web.core.windows.net/","blob":"https://privatepackage.blob.core.windows.net/","queue":"https://privatepackage.queue.core.windows.net/","table":"https://privatepackage.table.core.windows.net/","file":"https://privatepackage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://privatepackage-secondary.dfs.core.windows.net/","web":"https://privatepackage-secondary.z13.web.core.windows.net/","blob":"https://privatepackage-secondary.blob.core.windows.net/","queue":"https://privatepackage-secondary.queue.core.windows.net/","table":"https://privatepackage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/queuetest/providers/Microsoft.Storage/storageAccounts/qteststac","name":"qteststac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-11-10T05:21:49.0582561Z","key2":"2021-11-10T05:21:49.0582561Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-10T05:21:48.9488735Z","primaryEndpoints":{"dfs":"https://qteststac.dfs.core.windows.net/","web":"https://qteststac.z13.web.core.windows.net/","blob":"https://qteststac.blob.core.windows.net/","queue":"https://qteststac.queue.core.windows.net/","table":"https://qteststac.table.core.windows.net/","file":"https://qteststac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qteststac-secondary.dfs.core.windows.net/","web":"https://qteststac-secondary.z13.web.core.windows.net/","blob":"https://qteststac-secondary.blob.core.windows.net/","queue":"https://qteststac-secondary.queue.core.windows.net/","table":"https://qteststac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Storage/storageAccounts/saeastusnfs","name":"saeastusnfs","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-09T03:07:31.6721319Z","key2":"2022-08-09T03:07:31.6721319Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Storage/storageAccounts/saeastusnfs/privateEndpointConnections/saeastusnfs.10659eb6-b1fa-4873-b71b-fc35399d6ea0","name":"saeastusnfs.10659eb6-b1fa-4873-b71b-fc35399d6ea0","type":"Microsoft.Storage/storageAccounts/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Network/privateEndpoints/privateendpointnfs"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionRequired":"None"}}}],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-09T03:07:31.6877592Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-09T03:07:31.6877592Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-09T03:07:31.5471648Z","primaryEndpoints":{"file":"https://saeastusnfs.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-purview-msyyc/providers/Microsoft.Storage/storageAccounts/scaneastusxncccyt","name":"scaneastusxncccyt","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-23T01:56:19.6672075Z","key2":"2021-08-23T01:56:19.6672075Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T01:56:19.5422473Z","primaryEndpoints":{"dfs":"https://scaneastusxncccyt.dfs.core.windows.net/","web":"https://scaneastusxncccyt.z13.web.core.windows.net/","blob":"https://scaneastusxncccyt.blob.core.windows.net/","queue":"https://scaneastusxncccyt.queue.core.windows.net/","table":"https://scaneastusxncccyt.table.core.windows.net/","file":"https://scaneastusxncccyt.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageaccountsynapse1","name":"storageaccountsynapse1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-03T06:18:46.5540684Z","key2":"2022-03-03T06:18:46.5540684Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T06:18:46.5696968Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T06:18:46.5696968Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T06:18:46.4134367Z","primaryEndpoints":{"dfs":"https://storageaccountsynapse1.dfs.core.windows.net/","web":"https://storageaccountsynapse1.z13.web.core.windows.net/","blob":"https://storageaccountsynapse1.blob.core.windows.net/","queue":"https://storageaccountsynapse1.queue.core.windows.net/","table":"https://storageaccountsynapse1.table.core.windows.net/","file":"https://storageaccountsynapse1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storageaccountsynapse1-secondary.dfs.core.windows.net/","web":"https://storageaccountsynapse1-secondary.z13.web.core.windows.net/","blob":"https://storageaccountsynapse1-secondary.blob.core.windows.net/","queue":"https://storageaccountsynapse1-secondary.queue.core.windows.net/","table":"https://storageaccountsynapse1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testvlw","name":"testvlw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-27T06:47:50.5497427Z","key2":"2021-10-27T06:47:50.5497427Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:47:50.4247606Z","primaryEndpoints":{"dfs":"https://testvlw.dfs.core.windows.net/","web":"https://testvlw.z13.web.core.windows.net/","blob":"https://testvlw.blob.core.windows.net/","queue":"https://testvlw.queue.core.windows.net/","table":"https://testvlw.table.core.windows.net/","file":"https://testvlw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testvlw-secondary.dfs.core.windows.net/","web":"https://testvlw-secondary.z13.web.core.windows.net/","blob":"https://testvlw-secondary.blob.core.windows.net/","queue":"https://testvlw-secondary.queue.core.windows.net/","table":"https://testvlw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"key1":"value1"},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-16T08:39:21.3287573Z","key2":"2021-08-16T08:39:21.3287573Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-16T08:39:21.2193709Z","primaryEndpoints":{"dfs":"https://yssa.dfs.core.windows.net/","web":"https://yssa.z13.web.core.windows.net/","blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsa","name":"zhiyihuangsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-10T05:47:01.2111871Z","key2":"2021-09-10T05:47:01.2111871Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T05:47:01.0861745Z","primaryEndpoints":{"dfs":"https://zhiyihuangsa.dfs.core.windows.net/","web":"https://zhiyihuangsa.z13.web.core.windows.net/","blob":"https://zhiyihuangsa.blob.core.windows.net/","queue":"https://zhiyihuangsa.queue.core.windows.net/","table":"https://zhiyihuangsa.table.core.windows.net/","file":"https://zhiyihuangsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsa-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsa-secondary.z13.web.core.windows.net/","blob":"https://zhiyihuangsa-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsa-secondary.queue.core.windows.net/","table":"https://zhiyihuangsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsadatalake","name":"zhiyihuangsadatalake","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-04T08:22:03.4626093Z","key2":"2022-07-04T08:22:03.4626093Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"isSftpEnabled":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-04T08:22:03.4782085Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-04T08:22:03.4782085Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-07-04T08:22:03.2750855Z","primaryEndpoints":{"dfs":"https://zhiyihuangsadatalake.dfs.core.windows.net/","web":"https://zhiyihuangsadatalake.z13.web.core.windows.net/","blob":"https://zhiyihuangsadatalake.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"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":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-17T01:54:55.9814285Z","key2":"2022-08-17T01:54:55.9814285Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-17T01:54:56.7470655Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-17T01:54:56.7470655Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-17T01:54:55.8408055Z","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_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/zhuyan","name":"zhuyan","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-29T07:49:14.8648748Z","key2":"2022-08-29T07:49:14.8648748Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-29T07:49:15.5055031Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-29T07:49:15.5055031Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-29T07:49:14.7086254Z","primaryEndpoints":{"dfs":"https://zhuyan.dfs.core.windows.net/","web":"https://zhuyan.z13.web.core.windows.net/","blob":"https://zhuyan.blob.core.windows.net/","queue":"https://zhuyan.queue.core.windows.net/","table":"https://zhuyan.table.core.windows.net/","file":"https://zhuyan.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhuyan-secondary.dfs.core.windows.net/","web":"https://zhuyan-secondary.z13.web.core.windows.net/","blob":"https://zhuyan-secondary.blob.core.windows.net/","queue":"https://zhuyan-secondary.queue.core.windows.net/","table":"https://zhuyan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"dfs":"https://azextensionedge.dfs.core.windows.net/","web":"https://azextensionedge.z22.web.core.windows.net/","blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azextensionedge-secondary.dfs.core.windows.net/","web":"https://azextensionedge-secondary.z22.web.core.windows.net/","blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"dfs":"https://azurecliedge.dfs.core.windows.net/","web":"https://azurecliedge.z22.web.core.windows.net/","blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.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.rgvkabvkhtczh22xyyolcylggxp3k3zypgaucf6jq2u2a43efcgn25qvz4vzegw3y5f/providers/Microsoft.Storage/storageAccounts/clitest3nfatjachi442call","name":"clitest3nfatjachi442call","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-31T06:40:06.0769390Z","key2":"2022-08-31T06:40:06.0769390Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T06:40:06.0769390Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T06:40:06.0769390Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-31T06:40:05.9363452Z","primaryEndpoints":{"blob":"https://clitest3nfatjachi442call.blob.core.windows.net/","queue":"https://clitest3nfatjachi442call.queue.core.windows.net/","table":"https://clitest3nfatjachi442call.table.core.windows.net/","file":"https://clitest3nfatjachi442call.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":{"keyCreationTime":{"key1":"2022-08-31T06:41:28.2342174Z","key2":"2022-08-31T06:41:28.2342174Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T06:41:28.2498116Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T06:41:28.2498116Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-31T06:41:28.1248234Z","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/clitest.rgndqcnhtzbgfvywayllmropscysoonfvdiqt3yy2f2owek56fmxotp4xkaed4ctlml/providers/Microsoft.Storage/storageAccounts/clitesthbyb7yke3ybao3eon","name":"clitesthbyb7yke3ybao3eon","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-07T04:18:13.1067632Z","key2":"2022-05-07T04:18:13.1067632Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-07T04:18:13.1067632Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-07T04:18:13.1067632Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-07T04:18:12.9818218Z","primaryEndpoints":{"dfs":"https://clitesthbyb7yke3ybao3eon.dfs.core.windows.net/","web":"https://clitesthbyb7yke3ybao3eon.z22.web.core.windows.net/","blob":"https://clitesthbyb7yke3ybao3eon.blob.core.windows.net/","queue":"https://clitesthbyb7yke3ybao3eon.queue.core.windows.net/","table":"https://clitesthbyb7yke3ybao3eon.table.core.windows.net/","file":"https://clitesthbyb7yke3ybao3eon.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.rgmth6cd33hpmrazspngksy6squok3cm6wpo4z22avl76gccjgqaivrwpqwifzfrrwl/providers/Microsoft.Storage/storageAccounts/clitestr5ksufziaskmd4bzg","name":"clitestr5ksufziaskmd4bzg","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-31T06:41:28.4373323Z","key2":"2022-08-31T06:41:28.4373323Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T06:41:28.4529809Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T06:41:28.4529809Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-31T06:41:28.3280043Z","primaryEndpoints":{"blob":"https://clitestr5ksufziaskmd4bzg.blob.core.windows.net/","queue":"https://clitestr5ksufziaskmd4bzg.queue.core.windows.net/","table":"https://clitestr5ksufziaskmd4bzg.table.core.windows.net/","file":"https://clitestr5ksufziaskmd4bzg.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/pythonsdkmsyyc","name":"pythonsdkmsyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-30T09:03:04.8209550Z","key2":"2021-06-30T09:03:04.8209550Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-30T09:03:04.7272348Z","primaryEndpoints":{"dfs":"https://pythonsdkmsyyc.dfs.core.windows.net/","web":"https://pythonsdkmsyyc.z22.web.core.windows.net/","blob":"https://pythonsdkmsyyc.blob.core.windows.net/","queue":"https://pythonsdkmsyyc.queue.core.windows.net/","table":"https://pythonsdkmsyyc.table.core.windows.net/","file":"https://pythonsdkmsyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageyyc","name":"storageyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-26T05:53:22.9974267Z","key2":"2021-09-26T05:53:22.9974267Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:53:22.9192578Z","primaryEndpoints":{"dfs":"https://storageyyc.dfs.core.windows.net/","web":"https://storageyyc.z22.web.core.windows.net/","blob":"https://storageyyc.blob.core.windows.net/","queue":"https://storageyyc.queue.core.windows.net/","table":"https://storageyyc.table.core.windows.net/","file":"https://storageyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw","name":"testalw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":3,"state":"Disabled"}},"keyCreationTime":{"key1":"2021-10-27T06:27:50.3554138Z","key2":"2021-10-27T06:27:50.3554138Z"},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw/privateEndpointConnections/testalw.cefd3d56-feb9-4be9-978b-fb9416daa1ab","name":"testalw.cefd3d56-feb9-4be9-978b-fb9416daa1ab","type":"Microsoft.Storage/storageAccounts/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Network/privateEndpoints/testpe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionRequired":"None"}}}],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:27:50.2616355Z","primaryEndpoints":{"dfs":"https://testalw.dfs.core.windows.net/","web":"https://testalw.z22.web.core.windows.net/","blob":"https://testalw.blob.core.windows.net/","queue":"https://testalw.queue.core.windows.net/","table":"https://testalw.table.core.windows.net/","file":"https://testalw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw-secondary.dfs.core.windows.net/","web":"https://testalw-secondary.z22.web.core.windows.net/","blob":"https://testalw-secondary.blob.core.windows.net/","queue":"https://testalw-secondary.queue.core.windows.net/","table":"https://testalw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1027","name":"testalw1027","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-27T07:34:49.7592232Z","key2":"2021-10-27T07:34:49.7592232Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T07:34:49.6810731Z","primaryEndpoints":{"dfs":"https://testalw1027.dfs.core.windows.net/","web":"https://testalw1027.z22.web.core.windows.net/","blob":"https://testalw1027.blob.core.windows.net/","queue":"https://testalw1027.queue.core.windows.net/","table":"https://testalw1027.table.core.windows.net/","file":"https://testalw1027.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1027-secondary.dfs.core.windows.net/","web":"https://testalw1027-secondary.z22.web.core.windows.net/","blob":"https://testalw1027-secondary.blob.core.windows.net/","queue":"https://testalw1027-secondary.queue.core.windows.net/","table":"https://testalw1027-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1028","name":"testalw1028","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-28T01:49:10.2414505Z","key2":"2021-10-28T01:49:10.2414505Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T01:49:10.1633042Z","primaryEndpoints":{"dfs":"https://testalw1028.dfs.core.windows.net/","web":"https://testalw1028.z22.web.core.windows.net/","blob":"https://testalw1028.blob.core.windows.net/","queue":"https://testalw1028.queue.core.windows.net/","table":"https://testalw1028.table.core.windows.net/","file":"https://testalw1028.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1028-secondary.dfs.core.windows.net/","web":"https://testalw1028-secondary.z22.web.core.windows.net/","blob":"https://testalw1028-secondary.blob.core.windows.net/","queue":"https://testalw1028-secondary.queue.core.windows.net/","table":"https://testalw1028-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yshns","name":"yshns","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T02:10:28.4103368Z","key2":"2021-10-15T02:10:28.4103368Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T02:10:28.3165819Z","primaryEndpoints":{"dfs":"https://yshns.dfs.core.windows.net/","web":"https://yshns.z22.web.core.windows.net/","blob":"https://yshns.blob.core.windows.net/","queue":"https://yshns.queue.core.windows.net/","table":"https://yshns.table.core.windows.net/","file":"https://yshns.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yshns-secondary.dfs.core.windows.net/","web":"https://yshns-secondary.z22.web.core.windows.net/","blob":"https://yshns-secondary.blob.core.windows.net/","queue":"https://yshns-secondary.queue.core.windows.net/","table":"https://yshns-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"dfs":"https://azuresdktest.dfs.core.windows.net/","web":"https://azuresdktest.z7.web.core.windows.net/","blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.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.rgbcjpbfrgst/providers/Microsoft.Storage/storageAccounts/clitest7y3z5tzoevqexrwmb","name":"clitest7y3z5tzoevqexrwmb","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-11T16:07:26.7756526Z","key2":"2022-08-11T16:07:26.7756526Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-11T16:07:26.7912767Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-11T16:07:26.7912767Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-11T16:07:26.6975255Z","primaryEndpoints":{"blob":"https://clitest7y3z5tzoevqexrwmb.blob.core.windows.net/","queue":"https://clitest7y3z5tzoevqexrwmb.queue.core.windows.net/","table":"https://clitest7y3z5tzoevqexrwmb.table.core.windows.net/","file":"https://clitest7y3z5tzoevqexrwmb.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.rgephuyzwt3d/providers/Microsoft.Storage/storageAccounts/clitesturpy433yg4s3cpou6","name":"clitesturpy433yg4s3cpou6","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-21T15:56:17.1133943Z","key2":"2022-07-21T15:56:17.1133943Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T15:56:17.1290016Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T15:56:17.1290016Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-07-21T15:56:17.0352115Z","primaryEndpoints":{"blob":"https://clitesturpy433yg4s3cpou6.blob.core.windows.net/","queue":"https://clitesturpy433yg4s3cpou6.queue.core.windows.net/","table":"https://clitesturpy433yg4s3cpou6.table.core.windows.net/","file":"https://clitesturpy433yg4s3cpou6.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.rggrglkh7zr7/providers/Microsoft.Storage/storageAccounts/clitest2f63bh43aix4wcnlh","name":"clitest2f63bh43aix4wcnlh","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.5541453Z","key2":"2021-04-22T08:17:38.5541453Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.4760163Z","primaryEndpoints":{"blob":"https://clitest2f63bh43aix4wcnlh.blob.core.windows.net/","queue":"https://clitest2f63bh43aix4wcnlh.queue.core.windows.net/","table":"https://clitest2f63bh43aix4wcnlh.table.core.windows.net/","file":"https://clitest2f63bh43aix4wcnlh.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrli6qx2bll/providers/Microsoft.Storage/storageAccounts/clitest2kskuzyfvkqd7xx4y","name":"clitest2kskuzyfvkqd7xx4y","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T23:34:08.0367829Z","key2":"2022-03-16T23:34:08.0367829Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T23:34:08.0367829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T23:34:08.0367829Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-16T23:34:07.9430240Z","primaryEndpoints":{"blob":"https://clitest2kskuzyfvkqd7xx4y.blob.core.windows.net/","queue":"https://clitest2kskuzyfvkqd7xx4y.queue.core.windows.net/","table":"https://clitest2kskuzyfvkqd7xx4y.table.core.windows.net/","file":"https://clitest2kskuzyfvkqd7xx4y.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh5duq2f6uh/providers/Microsoft.Storage/storageAccounts/clitest2vjedutxs37ymp4ni","name":"clitest2vjedutxs37ymp4ni","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0424866Z","key2":"2021-04-23T07:13:21.0424866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9643257Z","primaryEndpoints":{"blob":"https://clitest2vjedutxs37ymp4ni.blob.core.windows.net/","queue":"https://clitest2vjedutxs37ymp4ni.queue.core.windows.net/","table":"https://clitest2vjedutxs37ymp4ni.table.core.windows.net/","file":"https://clitest2vjedutxs37ymp4ni.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6l3rg6atb/providers/Microsoft.Storage/storageAccounts/clitest4sjmiwke5nz3f67pu","name":"clitest4sjmiwke5nz3f67pu","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.3305055Z","key2":"2021-04-22T08:02:15.3305055Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.2523305Z","primaryEndpoints":{"blob":"https://clitest4sjmiwke5nz3f67pu.blob.core.windows.net/","queue":"https://clitest4sjmiwke5nz3f67pu.queue.core.windows.net/","table":"https://clitest4sjmiwke5nz3f67pu.table.core.windows.net/","file":"https://clitest4sjmiwke5nz3f67pu.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest5frikrzhxwryrkfel","name":"clitest5frikrzhxwryrkfel","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:19:22.9620171Z","key2":"2021-04-22T08:19:22.9620171Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:19:22.8838883Z","primaryEndpoints":{"blob":"https://clitest5frikrzhxwryrkfel.blob.core.windows.net/","queue":"https://clitest5frikrzhxwryrkfel.queue.core.windows.net/","table":"https://clitest5frikrzhxwryrkfel.table.core.windows.net/","file":"https://clitest5frikrzhxwryrkfel.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc4sjsrzt4/providers/Microsoft.Storage/storageAccounts/clitest63b5vtkhuf7auho6z","name":"clitest63b5vtkhuf7auho6z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.3198561Z","key2":"2021-04-22T08:17:38.3198561Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.2416459Z","primaryEndpoints":{"blob":"https://clitest63b5vtkhuf7auho6z.blob.core.windows.net/","queue":"https://clitest63b5vtkhuf7auho6z.queue.core.windows.net/","table":"https://clitest63b5vtkhuf7auho6z.table.core.windows.net/","file":"https://clitest63b5vtkhuf7auho6z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitest6jusqp4qvczw52pql","name":"clitest6jusqp4qvczw52pql","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:05:08.7847684Z","key2":"2021-04-22T08:05:08.7847684Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:05:08.7065579Z","primaryEndpoints":{"blob":"https://clitest6jusqp4qvczw52pql.blob.core.windows.net/","queue":"https://clitest6jusqp4qvczw52pql.queue.core.windows.net/","table":"https://clitest6jusqp4qvczw52pql.table.core.windows.net/","file":"https://clitest6jusqp4qvczw52pql.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest74vl6rwuxl5fbuklw","name":"clitest74vl6rwuxl5fbuklw","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.2260082Z","key2":"2021-04-22T08:17:38.2260082Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.1635154Z","primaryEndpoints":{"blob":"https://clitest74vl6rwuxl5fbuklw.blob.core.windows.net/","queue":"https://clitest74vl6rwuxl5fbuklw.queue.core.windows.net/","table":"https://clitest74vl6rwuxl5fbuklw.table.core.windows.net/","file":"https://clitest74vl6rwuxl5fbuklw.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6swh3vebl/providers/Microsoft.Storage/storageAccounts/clitestaxq4uhxp4axa3uagg","name":"clitestaxq4uhxp4axa3uagg","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-10T05:18:34.9019274Z","key2":"2021-12-10T05:18:34.9019274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-10T05:18:34.9175551Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-10T05:18:34.9175551Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-10T05:18:34.8238281Z","primaryEndpoints":{"blob":"https://clitestaxq4uhxp4axa3uagg.blob.core.windows.net/","queue":"https://clitestaxq4uhxp4axa3uagg.queue.core.windows.net/","table":"https://clitestaxq4uhxp4axa3uagg.table.core.windows.net/","file":"https://clitestaxq4uhxp4axa3uagg.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiudkrkxpl4/providers/Microsoft.Storage/storageAccounts/clitestbiegaggvgwivkqyyi","name":"clitestbiegaggvgwivkqyyi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.8705764Z","key2":"2021-04-23T07:13:20.8705764Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.7925187Z","primaryEndpoints":{"blob":"https://clitestbiegaggvgwivkqyyi.blob.core.windows.net/","queue":"https://clitestbiegaggvgwivkqyyi.queue.core.windows.net/","table":"https://clitestbiegaggvgwivkqyyi.table.core.windows.net/","file":"https://clitestbiegaggvgwivkqyyi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46ia57tmnz/providers/Microsoft.Storage/storageAccounts/clitestdlxtp24ycnjl3jui2","name":"clitestdlxtp24ycnjl3jui2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.3217696Z","key2":"2021-04-23T03:42:54.3217696Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.2436164Z","primaryEndpoints":{"blob":"https://clitestdlxtp24ycnjl3jui2.blob.core.windows.net/","queue":"https://clitestdlxtp24ycnjl3jui2.queue.core.windows.net/","table":"https://clitestdlxtp24ycnjl3jui2.table.core.windows.net/","file":"https://clitestdlxtp24ycnjl3jui2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23akmjlz2r/providers/Microsoft.Storage/storageAccounts/clitestdmmxq6bklh35yongi","name":"clitestdmmxq6bklh35yongi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.6966074Z","key2":"2021-08-05T19:49:04.6966074Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.6185933Z","primaryEndpoints":{"blob":"https://clitestdmmxq6bklh35yongi.blob.core.windows.net/","queue":"https://clitestdmmxq6bklh35yongi.queue.core.windows.net/","table":"https://clitestdmmxq6bklh35yongi.table.core.windows.net/","file":"https://clitestdmmxq6bklh35yongi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv3m577d7ho/providers/Microsoft.Storage/storageAccounts/clitestej2fvhoj3zogyp5e7","name":"clitestej2fvhoj3zogyp5e7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.7279926Z","key2":"2021-04-23T03:42:54.7279926Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6342444Z","primaryEndpoints":{"blob":"https://clitestej2fvhoj3zogyp5e7.blob.core.windows.net/","queue":"https://clitestej2fvhoj3zogyp5e7.queue.core.windows.net/","table":"https://clitestej2fvhoj3zogyp5e7.table.core.windows.net/","file":"https://clitestej2fvhoj3zogyp5e7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6ikwpcsq7/providers/Microsoft.Storage/storageAccounts/clitestggvkyebv5o55dhakj","name":"clitestggvkyebv5o55dhakj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.2300019Z","key2":"2021-04-23T07:13:21.2300019Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:21.1518492Z","primaryEndpoints":{"blob":"https://clitestggvkyebv5o55dhakj.blob.core.windows.net/","queue":"https://clitestggvkyebv5o55dhakj.queue.core.windows.net/","table":"https://clitestggvkyebv5o55dhakj.table.core.windows.net/","file":"https://clitestggvkyebv5o55dhakj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6glpfa25c/providers/Microsoft.Storage/storageAccounts/clitestgt3fjzabc7taya5zo","name":"clitestgt3fjzabc7taya5zo","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6675009Z","key2":"2021-04-23T07:13:20.6675009Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.5894204Z","primaryEndpoints":{"blob":"https://clitestgt3fjzabc7taya5zo.blob.core.windows.net/","queue":"https://clitestgt3fjzabc7taya5zo.queue.core.windows.net/","table":"https://clitestgt3fjzabc7taya5zo.table.core.windows.net/","file":"https://clitestgt3fjzabc7taya5zo.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptzwacrnwa/providers/Microsoft.Storage/storageAccounts/clitestivtrt5tp624n63ast","name":"clitestivtrt5tp624n63ast","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.1166795Z","key2":"2021-04-22T08:17:38.1166795Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.0541529Z","primaryEndpoints":{"blob":"https://clitestivtrt5tp624n63ast.blob.core.windows.net/","queue":"https://clitestivtrt5tp624n63ast.queue.core.windows.net/","table":"https://clitestivtrt5tp624n63ast.table.core.windows.net/","file":"https://clitestivtrt5tp624n63ast.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaz5eufnx7d/providers/Microsoft.Storage/storageAccounts/clitestkj3e2bodztqdfqsa2","name":"clitestkj3e2bodztqdfqsa2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-08T09:02:59.1361396Z","key2":"2021-12-08T09:02:59.1361396Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-08T09:02:59.1361396Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-08T09:02:59.1361396Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-08T09:02:59.0267650Z","primaryEndpoints":{"blob":"https://clitestkj3e2bodztqdfqsa2.blob.core.windows.net/","queue":"https://clitestkj3e2bodztqdfqsa2.queue.core.windows.net/","table":"https://clitestkj3e2bodztqdfqsa2.table.core.windows.net/","file":"https://clitestkj3e2bodztqdfqsa2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeghfcmpfiw/providers/Microsoft.Storage/storageAccounts/clitestkoxtfkf67yodgckyb","name":"clitestkoxtfkf67yodgckyb","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-28T10:04:35.2504002Z","key2":"2022-02-28T10:04:35.2504002Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T10:04:35.2504002Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T10:04:35.2504002Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-02-28T10:04:35.1410179Z","primaryEndpoints":{"blob":"https://clitestkoxtfkf67yodgckyb.blob.core.windows.net/","queue":"https://clitestkoxtfkf67yodgckyb.queue.core.windows.net/","table":"https://clitestkoxtfkf67yodgckyb.table.core.windows.net/","file":"https://clitestkoxtfkf67yodgckyb.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdc25pvki6m/providers/Microsoft.Storage/storageAccounts/clitestkxu4ahsqaxv42cyyf","name":"clitestkxu4ahsqaxv42cyyf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.7523496Z","key2":"2021-04-22T08:02:15.7523496Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.6742355Z","primaryEndpoints":{"blob":"https://clitestkxu4ahsqaxv42cyyf.blob.core.windows.net/","queue":"https://clitestkxu4ahsqaxv42cyyf.queue.core.windows.net/","table":"https://clitestkxu4ahsqaxv42cyyf.table.core.windows.net/","file":"https://clitestkxu4ahsqaxv42cyyf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawbqkye7l4/providers/Microsoft.Storage/storageAccounts/clitestlsjx67ujuhjr7zkah","name":"clitestlsjx67ujuhjr7zkah","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-09T04:30:23.0266730Z","key2":"2022-05-09T04:30:23.0266730Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-09T04:30:23.0266730Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-09T04:30:23.0266730Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-09T04:30:22.9172929Z","primaryEndpoints":{"blob":"https://clitestlsjx67ujuhjr7zkah.blob.core.windows.net/","queue":"https://clitestlsjx67ujuhjr7zkah.queue.core.windows.net/","table":"https://clitestlsjx67ujuhjr7zkah.table.core.windows.net/","file":"https://clitestlsjx67ujuhjr7zkah.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4chnkoo7ql/providers/Microsoft.Storage/storageAccounts/clitestmevgvn7p2e7ydqz44","name":"clitestmevgvn7p2e7ydqz44","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-08T03:32:22.3716191Z","key2":"2021-12-08T03:32:22.3716191Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-08T03:32:22.3872332Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-08T03:32:22.3872332Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-08T03:32:22.2778291Z","primaryEndpoints":{"blob":"https://clitestmevgvn7p2e7ydqz44.blob.core.windows.net/","queue":"https://clitestmevgvn7p2e7ydqz44.queue.core.windows.net/","table":"https://clitestmevgvn7p2e7ydqz44.table.core.windows.net/","file":"https://clitestmevgvn7p2e7ydqz44.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghkyqf7pb5/providers/Microsoft.Storage/storageAccounts/clitestpuea6vlqwxw6ihiws","name":"clitestpuea6vlqwxw6ihiws","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0581083Z","key2":"2021-04-23T07:13:21.0581083Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9799581Z","primaryEndpoints":{"blob":"https://clitestpuea6vlqwxw6ihiws.blob.core.windows.net/","queue":"https://clitestpuea6vlqwxw6ihiws.queue.core.windows.net/","table":"https://clitestpuea6vlqwxw6ihiws.table.core.windows.net/","file":"https://clitestpuea6vlqwxw6ihiws.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbo2ure7pgp/providers/Microsoft.Storage/storageAccounts/clitestsnv7joygpazk23npj","name":"clitestsnv7joygpazk23npj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-21T02:19:20.7474327Z","key2":"2021-05-21T02:19:20.7474327Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-21T02:19:20.6537267Z","primaryEndpoints":{"blob":"https://clitestsnv7joygpazk23npj.blob.core.windows.net/","queue":"https://clitestsnv7joygpazk23npj.queue.core.windows.net/","table":"https://clitestsnv7joygpazk23npj.table.core.windows.net/","file":"https://clitestsnv7joygpazk23npj.file.core.windows.net/"},"primaryLocation":"southeastasia","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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitestwqzjytdeun46rphfd","name":"clitestwqzjytdeun46rphfd","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:44:35.3668592Z","key2":"2021-04-23T03:44:35.3668592Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:44:35.2887580Z","primaryEndpoints":{"blob":"https://clitestwqzjytdeun46rphfd.blob.core.windows.net/","queue":"https://clitestwqzjytdeun46rphfd.queue.core.windows.net/","table":"https://clitestwqzjytdeun46rphfd.table.core.windows.net/","file":"https://clitestwqzjytdeun46rphfd.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltfej7yr4u/providers/Microsoft.Storage/storageAccounts/clitestwvsg2uskf4i7vjfto","name":"clitestwvsg2uskf4i7vjfto","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-13T07:48:30.9247776Z","key2":"2021-05-13T07:48:30.9247776Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-13T07:48:30.8309682Z","primaryEndpoints":{"blob":"https://clitestwvsg2uskf4i7vjfto.blob.core.windows.net/","queue":"https://clitestwvsg2uskf4i7vjfto.queue.core.windows.net/","table":"https://clitestwvsg2uskf4i7vjfto.table.core.windows.net/","file":"https://clitestwvsg2uskf4i7vjfto.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjznhcqaoh/providers/Microsoft.Storage/storageAccounts/clitestwznnmnfot33xjztmk","name":"clitestwznnmnfot33xjztmk","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.7299628Z","key2":"2021-04-23T07:13:20.7299628Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6518776Z","primaryEndpoints":{"blob":"https://clitestwznnmnfot33xjztmk.blob.core.windows.net/","queue":"https://clitestwznnmnfot33xjztmk.queue.core.windows.net/","table":"https://clitestwznnmnfot33xjztmk.table.core.windows.net/","file":"https://clitestwznnmnfot33xjztmk.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4yns4yxisb/providers/Microsoft.Storage/storageAccounts/clitestyt6rxgad3kebqzh26","name":"clitestyt6rxgad3kebqzh26","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.8528440Z","key2":"2021-08-05T19:49:04.8528440Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.7747435Z","primaryEndpoints":{"blob":"https://clitestyt6rxgad3kebqzh26.blob.core.windows.net/","queue":"https://clitestyt6rxgad3kebqzh26.queue.core.windows.net/","table":"https://clitestyt6rxgad3kebqzh26.table.core.windows.net/","file":"https://clitestyt6rxgad3kebqzh26.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgovptfsocfg/providers/Microsoft.Storage/storageAccounts/clitestz72bbbbv2cio2pmom","name":"clitestz72bbbbv2cio2pmom","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0112600Z","key2":"2021-04-23T07:13:21.0112600Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9330720Z","primaryEndpoints":{"blob":"https://clitestz72bbbbv2cio2pmom.blob.core.windows.net/","queue":"https://clitestz72bbbbv2cio2pmom.queue.core.windows.net/","table":"https://clitestz72bbbbv2cio2pmom.table.core.windows.net/","file":"https://clitestz72bbbbv2cio2pmom.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxp7uwuibs5/providers/Microsoft.Storage/storageAccounts/clitestzrwidkqplnw3jmz4z","name":"clitestzrwidkqplnw3jmz4z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6831653Z","key2":"2021-04-23T07:13:20.6831653Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6049571Z","primaryEndpoints":{"blob":"https://clitestzrwidkqplnw3jmz4z.blob.core.windows.net/","queue":"https://clitestzrwidkqplnw3jmz4z.queue.core.windows.net/","table":"https://clitestzrwidkqplnw3jmz4z.table.core.windows.net/","file":"https://clitestzrwidkqplnw3jmz4z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-26T05:48:15.7013062Z","key2":"2021-03-26T05:48:15.7013062Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"dfs":"https://cs1100320004dd89524.dfs.core.windows.net/","web":"https://cs1100320004dd89524.z23.web.core.windows.net/","blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320005416c8c9","name":"cs1100320005416c8c9","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-09T05:58:20.1898753Z","key2":"2021-07-09T05:58:20.1898753Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-09T05:58:20.0961322Z","primaryEndpoints":{"dfs":"https://cs1100320005416c8c9.dfs.core.windows.net/","web":"https://cs1100320005416c8c9.z23.web.core.windows.net/","blob":"https://cs1100320005416c8c9.blob.core.windows.net/","queue":"https://cs1100320005416c8c9.queue.core.windows.net/","table":"https://cs1100320005416c8c9.table.core.windows.net/","file":"https://cs1100320005416c8c9.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007b1ce356","name":"cs1100320007b1ce356","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-31T13:56:10.5497663Z","key2":"2021-08-31T13:56:10.5497663Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T13:56:10.4560533Z","primaryEndpoints":{"dfs":"https://cs1100320007b1ce356.dfs.core.windows.net/","web":"https://cs1100320007b1ce356.z23.web.core.windows.net/","blob":"https://cs1100320007b1ce356.blob.core.windows.net/","queue":"https://cs1100320007b1ce356.queue.core.windows.net/","table":"https://cs1100320007b1ce356.table.core.windows.net/","file":"https://cs1100320007b1ce356.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"dfs":"https://cs1100320007de01867.dfs.core.windows.net/","web":"https://cs1100320007de01867.z23.web.core.windows.net/","blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007f91393f","name":"cs1100320007f91393f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-01-22T18:02:15.3088372Z","key2":"2022-01-22T18:02:15.3088372Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-22T18:02:15.3088372Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-22T18:02:15.3088372Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-22T18:02:15.1681915Z","primaryEndpoints":{"dfs":"https://cs1100320007f91393f.dfs.core.windows.net/","web":"https://cs1100320007f91393f.z23.web.core.windows.net/","blob":"https://cs1100320007f91393f.blob.core.windows.net/","queue":"https://cs1100320007f91393f.queue.core.windows.net/","table":"https://cs1100320007f91393f.table.core.windows.net/","file":"https://cs1100320007f91393f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200087c55daf","name":"cs11003200087c55daf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-21T00:43:24.0011691Z","key2":"2021-07-21T00:43:24.0011691Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-21T00:43:23.9230250Z","primaryEndpoints":{"dfs":"https://cs11003200087c55daf.dfs.core.windows.net/","web":"https://cs11003200087c55daf.z23.web.core.windows.net/","blob":"https://cs11003200087c55daf.blob.core.windows.net/","queue":"https://cs11003200087c55daf.queue.core.windows.net/","table":"https://cs11003200087c55daf.table.core.windows.net/","file":"https://cs11003200087c55daf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-17T07:12:44.1132341Z","key2":"2021-03-17T07:12:44.1132341Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"dfs":"https://cs1100320008debd5bc.dfs.core.windows.net/","web":"https://cs1100320008debd5bc.z23.web.core.windows.net/","blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000919ef7c5","name":"cs110032000919ef7c5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-09T02:02:43.1652268Z","key2":"2021-10-09T02:02:43.1652268Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-09T02:02:43.0714900Z","primaryEndpoints":{"dfs":"https://cs110032000919ef7c5.dfs.core.windows.net/","web":"https://cs110032000919ef7c5.z23.web.core.windows.net/","blob":"https://cs110032000919ef7c5.blob.core.windows.net/","queue":"https://cs110032000919ef7c5.queue.core.windows.net/","table":"https://cs110032000919ef7c5.table.core.windows.net/","file":"https://cs110032000919ef7c5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-23T07:08:51.1436686Z","key2":"2021-03-23T07:08:51.1436686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"dfs":"https://cs11003200092fe0771.dfs.core.windows.net/","web":"https://cs11003200092fe0771.z23.web.core.windows.net/","blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c","name":"cs110032000b6f3c90c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-06T05:28:23.2493456Z","key2":"2021-05-06T05:28:23.2493456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-06T05:28:23.1868245Z","primaryEndpoints":{"dfs":"https://cs110032000b6f3c90c.dfs.core.windows.net/","web":"https://cs110032000b6f3c90c.z23.web.core.windows.net/","blob":"https://cs110032000b6f3c90c.blob.core.windows.net/","queue":"https://cs110032000b6f3c90c.queue.core.windows.net/","table":"https://cs110032000b6f3c90c.table.core.windows.net/","file":"https://cs110032000b6f3c90c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-15T06:39:35.4649198Z","key2":"2021-04-15T06:39:35.4649198Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"dfs":"https://cs110032000c31bae71.dfs.core.windows.net/","web":"https://cs110032000c31bae71.z23.web.core.windows.net/","blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"dfs":"https://cs110032000ca62af00.dfs.core.windows.net/","web":"https://cs110032000ca62af00.z23.web.core.windows.net/","blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000d5b642af","name":"cs110032000d5b642af","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-08-12T04:59:52.1914004Z","key2":"2022-08-12T04:59:52.1914004Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T04:59:52.2070290Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T04:59:52.2070290Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-12T04:59:52.0820281Z","primaryEndpoints":{"dfs":"https://cs110032000d5b642af.dfs.core.windows.net/","web":"https://cs110032000d5b642af.z23.web.core.windows.net/","blob":"https://cs110032000d5b642af.blob.core.windows.net/","queue":"https://cs110032000d5b642af.queue.core.windows.net/","table":"https://cs110032000d5b642af.table.core.windows.net/","file":"https://cs110032000d5b642af.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e1cb9f41","name":"cs110032000e1cb9f41","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-06-01T02:14:02.8985613Z","key2":"2021-06-01T02:14:02.8985613Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-01T02:14:02.8047066Z","primaryEndpoints":{"dfs":"https://cs110032000e1cb9f41.dfs.core.windows.net/","web":"https://cs110032000e1cb9f41.z23.web.core.windows.net/","blob":"https://cs110032000e1cb9f41.blob.core.windows.net/","queue":"https://cs110032000e1cb9f41.queue.core.windows.net/","table":"https://cs110032000e1cb9f41.table.core.windows.net/","file":"https://cs110032000e1cb9f41.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978","name":"cs110032000e3121978","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-25T07:26:43.6124221Z","key2":"2021-04-25T07:26:43.6124221Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-25T07:26:43.5343583Z","primaryEndpoints":{"dfs":"https://cs110032000e3121978.dfs.core.windows.net/","web":"https://cs110032000e3121978.z23.web.core.windows.net/","blob":"https://cs110032000e3121978.blob.core.windows.net/","queue":"https://cs110032000e3121978.queue.core.windows.net/","table":"https://cs110032000e3121978.table.core.windows.net/","file":"https://cs110032000e3121978.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000f3aac891","name":"cs110032000f3aac891","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-08T11:18:17.0122606Z","key2":"2021-10-08T11:18:17.0122606Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-08T11:18:16.9184856Z","primaryEndpoints":{"dfs":"https://cs110032000f3aac891.dfs.core.windows.net/","web":"https://cs110032000f3aac891.z23.web.core.windows.net/","blob":"https://cs110032000f3aac891.blob.core.windows.net/","queue":"https://cs110032000f3aac891.queue.core.windows.net/","table":"https://cs110032000f3aac891.table.core.windows.net/","file":"https://cs110032000f3aac891.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320010339dce7","name":"cs1100320010339dce7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-01T12:55:31.1442388Z","key2":"2021-07-01T12:55:31.1442388Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-01T12:55:31.0661165Z","primaryEndpoints":{"dfs":"https://cs1100320010339dce7.dfs.core.windows.net/","web":"https://cs1100320010339dce7.z23.web.core.windows.net/","blob":"https://cs1100320010339dce7.blob.core.windows.net/","queue":"https://cs1100320010339dce7.queue.core.windows.net/","table":"https://cs1100320010339dce7.table.core.windows.net/","file":"https://cs1100320010339dce7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-25T03:10:52.6098894Z","key2":"2021-03-25T03:10:52.6098894Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"dfs":"https://cs11003200127365c47.dfs.core.windows.net/","web":"https://cs11003200127365c47.z23.web.core.windows.net/","blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200129e38348","name":"cs11003200129e38348","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-24T06:59:16.3135399Z","key2":"2021-05-24T06:59:16.3135399Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-24T06:59:16.2198282Z","primaryEndpoints":{"dfs":"https://cs11003200129e38348.dfs.core.windows.net/","web":"https://cs11003200129e38348.z23.web.core.windows.net/","blob":"https://cs11003200129e38348.blob.core.windows.net/","queue":"https://cs11003200129e38348.queue.core.windows.net/","table":"https://cs11003200129e38348.table.core.windows.net/","file":"https://cs11003200129e38348.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-09T08:04:25.5979407Z","key2":"2021-04-09T08:04:25.5979407Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"dfs":"https://cs1100320012c36c452.dfs.core.windows.net/","web":"https://cs1100320012c36c452.z23.web.core.windows.net/","blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001520b2764","name":"cs110032001520b2764","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-09-03T08:56:46.2009376Z","key2":"2021-09-03T08:56:46.2009376Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T08:56:46.1071770Z","primaryEndpoints":{"dfs":"https://cs110032001520b2764.dfs.core.windows.net/","web":"https://cs110032001520b2764.z23.web.core.windows.net/","blob":"https://cs110032001520b2764.blob.core.windows.net/","queue":"https://cs110032001520b2764.queue.core.windows.net/","table":"https://cs110032001520b2764.table.core.windows.net/","file":"https://cs110032001520b2764.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320016ac59291","name":"cs1100320016ac59291","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-10T06:12:25.7518719Z","key2":"2021-08-10T06:12:25.7518719Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-10T06:12:25.6581170Z","primaryEndpoints":{"dfs":"https://cs1100320016ac59291.dfs.core.windows.net/","web":"https://cs1100320016ac59291.z23.web.core.windows.net/","blob":"https://cs1100320016ac59291.blob.core.windows.net/","queue":"https://cs1100320016ac59291.queue.core.windows.net/","table":"https://cs1100320016ac59291.table.core.windows.net/","file":"https://cs1100320016ac59291.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018cedbbd6","name":"cs1100320018cedbbd6","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-11-02T06:32:13.4022120Z","key2":"2021-11-02T06:32:13.4022120Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T06:32:13.3084745Z","primaryEndpoints":{"dfs":"https://cs1100320018cedbbd6.dfs.core.windows.net/","web":"https://cs1100320018cedbbd6.z23.web.core.windows.net/","blob":"https://cs1100320018cedbbd6.blob.core.windows.net/","queue":"https://cs1100320018cedbbd6.queue.core.windows.net/","table":"https://cs1100320018cedbbd6.table.core.windows.net/","file":"https://cs1100320018cedbbd6.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018db36b92","name":"cs1100320018db36b92","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-03-28T03:36:34.2370202Z","key2":"2022-03-28T03:36:34.2370202Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-28T03:36:34.2370202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-28T03:36:34.2370202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-28T03:36:34.1432960Z","primaryEndpoints":{"dfs":"https://cs1100320018db36b92.dfs.core.windows.net/","web":"https://cs1100320018db36b92.z23.web.core.windows.net/","blob":"https://cs1100320018db36b92.blob.core.windows.net/","queue":"https://cs1100320018db36b92.queue.core.windows.net/","table":"https://cs1100320018db36b92.table.core.windows.net/","file":"https://cs1100320018db36b92.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b3f915f1","name":"cs110032001b3f915f1","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-12-01T09:52:15.5623314Z","key2":"2021-12-01T09:52:15.5623314Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-01T09:52:15.5623314Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-01T09:52:15.5623314Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-01T09:52:15.4529548Z","primaryEndpoints":{"dfs":"https://cs110032001b3f915f1.dfs.core.windows.net/","web":"https://cs110032001b3f915f1.z23.web.core.windows.net/","blob":"https://cs110032001b3f915f1.blob.core.windows.net/","queue":"https://cs110032001b3f915f1.queue.core.windows.net/","table":"https://cs110032001b3f915f1.table.core.windows.net/","file":"https://cs110032001b3f915f1.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b429e302","name":"cs110032001b429e302","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-03-03T08:36:37.1925814Z","key2":"2022-03-03T08:36:37.1925814Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T08:36:37.1925814Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T08:36:37.1925814Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T08:36:37.0989854Z","primaryEndpoints":{"dfs":"https://cs110032001b429e302.dfs.core.windows.net/","web":"https://cs110032001b429e302.z23.web.core.windows.net/","blob":"https://cs110032001b429e302.blob.core.windows.net/","queue":"https://cs110032001b429e302.queue.core.windows.net/","table":"https://cs110032001b429e302.table.core.windows.net/","file":"https://cs110032001b429e302.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b42c9a19","name":"cs110032001b42c9a19","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-12-07T06:17:44.4758914Z","key2":"2021-12-07T06:17:44.4758914Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-07T06:17:44.4915329Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-07T06:17:44.4915329Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-07T06:17:44.3665152Z","primaryEndpoints":{"dfs":"https://cs110032001b42c9a19.dfs.core.windows.net/","web":"https://cs110032001b42c9a19.z23.web.core.windows.net/","blob":"https://cs110032001b42c9a19.blob.core.windows.net/","queue":"https://cs110032001b42c9a19.queue.core.windows.net/","table":"https://cs110032001b42c9a19.table.core.windows.net/","file":"https://cs110032001b42c9a19.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001c7af275f","name":"cs110032001c7af275f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-01-11T02:46:33.2282076Z","key2":"2022-01-11T02:46:33.2282076Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-11T02:46:33.2438448Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-11T02:46:33.2438448Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-11T02:46:33.1190309Z","primaryEndpoints":{"dfs":"https://cs110032001c7af275f.dfs.core.windows.net/","web":"https://cs110032001c7af275f.z23.web.core.windows.net/","blob":"https://cs110032001c7af275f.blob.core.windows.net/","queue":"https://cs110032001c7af275f.queue.core.windows.net/","table":"https://cs110032001c7af275f.table.core.windows.net/","file":"https://cs110032001c7af275f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001d33a7d6b","name":"cs110032001d33a7d6b","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-03-23T09:31:11.8736695Z","key2":"2022-03-23T09:31:11.8736695Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-23T09:31:11.8736695Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-23T09:31:11.8736695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-23T09:31:11.7641980Z","primaryEndpoints":{"dfs":"https://cs110032001d33a7d6b.dfs.core.windows.net/","web":"https://cs110032001d33a7d6b.z23.web.core.windows.net/","blob":"https://cs110032001d33a7d6b.blob.core.windows.net/","queue":"https://cs110032001d33a7d6b.queue.core.windows.net/","table":"https://cs110032001d33a7d6b.table.core.windows.net/","file":"https://cs110032001d33a7d6b.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001dbc5380d","name":"cs110032001dbc5380d","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-05-24T09:00:54.0289602Z","key2":"2022-05-24T09:00:54.0289602Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-24T09:00:54.0445000Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-24T09:00:54.0445000Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-24T09:00:53.9195518Z","primaryEndpoints":{"dfs":"https://cs110032001dbc5380d.dfs.core.windows.net/","web":"https://cs110032001dbc5380d.z23.web.core.windows.net/","blob":"https://cs110032001dbc5380d.blob.core.windows.net/","queue":"https://cs110032001dbc5380d.queue.core.windows.net/","table":"https://cs110032001dbc5380d.table.core.windows.net/","file":"https://cs110032001dbc5380d.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview/providers/Microsoft.Storage/storageAccounts/scansouthcentralusdteqbx","name":"scansouthcentralusdteqbx","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-23T06:00:34.2251607Z","key2":"2021-09-23T06:00:34.2251607Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-23T06:00:34.1313540Z","primaryEndpoints":{"dfs":"https://scansouthcentralusdteqbx.dfs.core.windows.net/","web":"https://scansouthcentralusdteqbx.z21.web.core.windows.net/","blob":"https://scansouthcentralusdteqbx.blob.core.windows.net/","queue":"https://scansouthcentralusdteqbx.queue.core.windows.net/","table":"https://scansouthcentralusdteqbx.table.core.windows.net/","file":"https://scansouthcentralusdteqbx.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"identity":{"principalId":"61cb6fdd-5399-4a58-aeee-c1c9a8a84094","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/databricks-rg-cli-test-db-create-yyhko6mu2w646/providers/Microsoft.Storage/storageAccounts/dbstorageiuxa4gtv5zxki","name":"dbstorageiuxa4gtv5zxki","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"application":"databricks","databricks-environment":"true"},"properties":{"keyCreationTime":{"key1":"2022-08-11T10:52:46.6287515Z","key2":"2022-08-11T10:52:46.6287515Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-11T10:52:46.6442622Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-11T10:52:46.6442622Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-11T10:52:46.5192203Z","primaryEndpoints":{"dfs":"https://dbstorageiuxa4gtv5zxki.dfs.core.windows.net/","blob":"https://dbstorageiuxa4gtv5zxki.blob.core.windows.net/","table":"https://dbstorageiuxa4gtv5zxki.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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":"2021-05-14T06:47:20.1106748Z","key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"dfs":"https://fengtestsa.dfs.core.windows.net/","web":"https://fengtestsa.z19.web.core.windows.net/","blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengtestsa-secondary.dfs.core.windows.net/","web":"https://fengtestsa-secondary.z19.web.core.windows.net/","blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-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/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zytest/providers/Microsoft.Storage/storageAccounts/zyaccount","name":"zyaccount","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-30T03:04:26.4210853Z","key2":"2022-08-30T03:04:26.4210853Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-30T03:04:26.4369275Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-30T03:04:26.4369275Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-30T03:04:26.2961281Z","primaryEndpoints":{"blob":"https://zyaccount.blob.core.windows.net/","queue":"https://zyaccount.queue.core.windows.net/","table":"https://zyaccount.table.core.windows.net/","file":"https://zyaccount.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview/providers/Microsoft.Storage/storageAccounts/scanwestus2ghwdfbf","name":"scanwestus2ghwdfbf","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T03:24:36.3735480Z","key2":"2021-09-28T03:24:36.3735480Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T03:24:36.2797988Z","primaryEndpoints":{"dfs":"https://scanwestus2ghwdfbf.dfs.core.windows.net/","web":"https://scanwestus2ghwdfbf.z5.web.core.windows.net/","blob":"https://scanwestus2ghwdfbf.blob.core.windows.net/","queue":"https://scanwestus2ghwdfbf.queue.core.windows.net/","table":"https://scanwestus2ghwdfbf.table.core.windows.net/","file":"https://scanwestus2ghwdfbf.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-file-handle-rg/providers/Microsoft.Storage/storageAccounts/testfilehandlesa","name":"testfilehandlesa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-11-02T02:22:24.9147695Z","key2":"2021-11-02T02:22:24.9147695Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T02:22:24.8209748Z","primaryEndpoints":{"dfs":"https://testfilehandlesa.dfs.core.windows.net/","web":"https://testfilehandlesa.z5.web.core.windows.net/","blob":"https://testfilehandlesa.blob.core.windows.net/","queue":"https://testfilehandlesa.queue.core.windows.net/","table":"https://testfilehandlesa.table.core.windows.net/","file":"https://testfilehandlesa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testfilehandlesa-secondary.dfs.core.windows.net/","web":"https://testfilehandlesa-secondary.z5.web.core.windows.net/","blob":"https://testfilehandlesa-secondary.blob.core.windows.net/","queue":"https://testfilehandlesa-secondary.queue.core.windows.net/","table":"https://testfilehandlesa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkd6p7qbfagrujatkewfdv6h4lsnhytzynqqfrqm6cgzfvri2zxoi2f7jcluwwmjuy/providers/Microsoft.Storage/storageAccounts/clitest2zi3a2bd4s6m2hude","name":"clitest2zi3a2bd4s6m2hude","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-15T00:28:26.7739584Z","key2":"2022-07-15T00:28:26.7739584Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-15T00:28:27.3364860Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-15T00:28:27.3364860Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-15T00:28:26.6802440Z","primaryEndpoints":{"dfs":"https://clitest2zi3a2bd4s6m2hude.dfs.core.windows.net/","web":"https://clitest2zi3a2bd4s6m2hude.z3.web.core.windows.net/","blob":"https://clitest2zi3a2bd4s6m2hude.blob.core.windows.net/","queue":"https://clitest2zi3a2bd4s6m2hude.queue.core.windows.net/","table":"https://clitest2zi3a2bd4s6m2hude.table.core.windows.net/","file":"https://clitest2zi3a2bd4s6m2hude.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyddrao5pqxeaghz5kwq36baqe3ks5zxsoshwylochzolebtnbiuehsgrvwowpmasr/providers/Microsoft.Storage/storageAccounts/clitest36v46kwont5xxebu6","name":"clitest36v46kwont5xxebu6","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-19T02:04:30.4389887Z","key2":"2022-08-19T02:04:30.4389887Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:04:30.7671094Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:04:30.7671094Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-19T02:04:30.3139633Z","primaryEndpoints":{"dfs":"https://clitest36v46kwont5xxebu6.dfs.core.windows.net/","web":"https://clitest36v46kwont5xxebu6.z3.web.core.windows.net/","blob":"https://clitest36v46kwont5xxebu6.blob.core.windows.net/","queue":"https://clitest36v46kwont5xxebu6.queue.core.windows.net/","table":"https://clitest36v46kwont5xxebu6.table.core.windows.net/","file":"https://clitest36v46kwont5xxebu6.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk3dgx6acfu6yrvvipseyqbiwldnaohcywhpi65w7jys42kv5gjs2pljpz5o7bsoah/providers/Microsoft.Storage/storageAccounts/clitest3tllg4jqytzq27ejk","name":"clitest3tllg4jqytzq27ejk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:36:53.0876733Z","key2":"2021-11-01T19:36:53.0876733Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:36:53.0095332Z","primaryEndpoints":{"dfs":"https://clitest3tllg4jqytzq27ejk.dfs.core.windows.net/","web":"https://clitest3tllg4jqytzq27ejk.z3.web.core.windows.net/","blob":"https://clitest3tllg4jqytzq27ejk.blob.core.windows.net/","queue":"https://clitest3tllg4jqytzq27ejk.queue.core.windows.net/","table":"https://clitest3tllg4jqytzq27ejk.table.core.windows.net/","file":"https://clitest3tllg4jqytzq27ejk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7ywcjwwkyqro7r54bzsggg3efujfc54tpvg3pmzto2wg3ifd5i2omb2oqz4ru44b3/providers/Microsoft.Storage/storageAccounts/clitest42lr3sjjyceqm2dsa","name":"clitest42lr3sjjyceqm2dsa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-11T14:04:08.6091074Z","key2":"2022-04-11T14:04:08.6091074Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:04:08.6248156Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:04:08.6248156Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:04:08.5153865Z","primaryEndpoints":{"dfs":"https://clitest42lr3sjjyceqm2dsa.dfs.core.windows.net/","web":"https://clitest42lr3sjjyceqm2dsa.z3.web.core.windows.net/","blob":"https://clitest42lr3sjjyceqm2dsa.blob.core.windows.net/","queue":"https://clitest42lr3sjjyceqm2dsa.queue.core.windows.net/","table":"https://clitest42lr3sjjyceqm2dsa.table.core.windows.net/","file":"https://clitest42lr3sjjyceqm2dsa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53ii7o3mvigrzaleunc7yvjyxzqsswvlh33ady7siswmzfoybwdaeovyarlr3rqok/providers/Microsoft.Storage/storageAccounts/clitest4g6zvuhalizptgwwu","name":"clitest4g6zvuhalizptgwwu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-22T00:03:34.6562181Z","key2":"2022-07-22T00:03:34.6562181Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-22T00:03:35.1249669Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-22T00:03:35.1249669Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-22T00:03:34.5468111Z","primaryEndpoints":{"dfs":"https://clitest4g6zvuhalizptgwwu.dfs.core.windows.net/","web":"https://clitest4g6zvuhalizptgwwu.z3.web.core.windows.net/","blob":"https://clitest4g6zvuhalizptgwwu.blob.core.windows.net/","queue":"https://clitest4g6zvuhalizptgwwu.queue.core.windows.net/","table":"https://clitest4g6zvuhalizptgwwu.table.core.windows.net/","file":"https://clitest4g6zvuhalizptgwwu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkgt6nin66or5swlkcbzuqqqvuatsme4t5spkwkygh4sziqlamyxv2fckdajclbire/providers/Microsoft.Storage/storageAccounts/clitest4hsuf3zwslxuux46y","name":"clitest4hsuf3zwslxuux46y","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T09:25:04.0198418Z","key2":"2022-03-16T09:25:04.0198418Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:25:04.0354560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:25:04.0354560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:25:03.8948335Z","primaryEndpoints":{"dfs":"https://clitest4hsuf3zwslxuux46y.dfs.core.windows.net/","web":"https://clitest4hsuf3zwslxuux46y.z3.web.core.windows.net/","blob":"https://clitest4hsuf3zwslxuux46y.blob.core.windows.net/","queue":"https://clitest4hsuf3zwslxuux46y.queue.core.windows.net/","table":"https://clitest4hsuf3zwslxuux46y.table.core.windows.net/","file":"https://clitest4hsuf3zwslxuux46y.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7meyhlnrfbkrxbl3dlr5scn2ifgzq3w5hrk4qgkrbhznds533fs5ueybsogfe6yff/providers/Microsoft.Storage/storageAccounts/clitest4i7ob4hsixy3piqdm","name":"clitest4i7ob4hsixy3piqdm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-23T23:11:24.4937270Z","key2":"2022-06-23T23:11:24.4937270Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-23T23:11:24.7750173Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-23T23:11:24.7750173Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-23T23:11:24.4000060Z","primaryEndpoints":{"dfs":"https://clitest4i7ob4hsixy3piqdm.dfs.core.windows.net/","web":"https://clitest4i7ob4hsixy3piqdm.z3.web.core.windows.net/","blob":"https://clitest4i7ob4hsixy3piqdm.blob.core.windows.net/","queue":"https://clitest4i7ob4hsixy3piqdm.queue.core.windows.net/","table":"https://clitest4i7ob4hsixy3piqdm.table.core.windows.net/","file":"https://clitest4i7ob4hsixy3piqdm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5rbhj2siyn33fb3buqv4nfrpbtszdqvkeyymdjvwdzj2tgg6z5ig5v4fsnlngl6zy/providers/Microsoft.Storage/storageAccounts/clitest4k6c57bhb3fbeaeb2","name":"clitest4k6c57bhb3fbeaeb2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-02T23:19:47.3184925Z","key2":"2021-12-02T23:19:47.3184925Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:19:47.3184925Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:19:47.3184925Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:19:47.2247436Z","primaryEndpoints":{"dfs":"https://clitest4k6c57bhb3fbeaeb2.dfs.core.windows.net/","web":"https://clitest4k6c57bhb3fbeaeb2.z3.web.core.windows.net/","blob":"https://clitest4k6c57bhb3fbeaeb2.blob.core.windows.net/","queue":"https://clitest4k6c57bhb3fbeaeb2.queue.core.windows.net/","table":"https://clitest4k6c57bhb3fbeaeb2.table.core.windows.net/","file":"https://clitest4k6c57bhb3fbeaeb2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgffzoae3m5ahiezmgpjldysvdjuvue5akjhvs3o5kg4ejrkjbvnjhtrvhk2w6n3oa3/providers/Microsoft.Storage/storageAccounts/clitest4pdszqy2diepxzn54","name":"clitest4pdszqy2diepxzn54","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-28T23:38:36.5817466Z","key2":"2022-07-28T23:38:36.5817466Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:38:37.2234580Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:38:37.2234580Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-28T23:38:36.4879931Z","primaryEndpoints":{"dfs":"https://clitest4pdszqy2diepxzn54.dfs.core.windows.net/","web":"https://clitest4pdszqy2diepxzn54.z3.web.core.windows.net/","blob":"https://clitest4pdszqy2diepxzn54.blob.core.windows.net/","queue":"https://clitest4pdszqy2diepxzn54.queue.core.windows.net/","table":"https://clitest4pdszqy2diepxzn54.table.core.windows.net/","file":"https://clitest4pdszqy2diepxzn54.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgllxoprxwjouhrzsd4vrfhqkpy7ft2fwgtiub56wonkmtvsogumww7h36czdisqqxm/providers/Microsoft.Storage/storageAccounts/clitest4slutm4qduocdiy7o","name":"clitest4slutm4qduocdiy7o","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:17:57.1095774Z","key2":"2021-11-18T23:17:57.1095774Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:57.0471042Z","primaryEndpoints":{"dfs":"https://clitest4slutm4qduocdiy7o.dfs.core.windows.net/","web":"https://clitest4slutm4qduocdiy7o.z3.web.core.windows.net/","blob":"https://clitest4slutm4qduocdiy7o.blob.core.windows.net/","queue":"https://clitest4slutm4qduocdiy7o.queue.core.windows.net/","table":"https://clitest4slutm4qduocdiy7o.table.core.windows.net/","file":"https://clitest4slutm4qduocdiy7o.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkqf4cu665yaejvrvcvhfklfoep7xw2qhgk7q5qkmosqpcdypz6aubtjovadrpefmu/providers/Microsoft.Storage/storageAccounts/clitest4ypv67tuvo34umfu5","name":"clitest4ypv67tuvo34umfu5","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-27T08:37:30.4318022Z","key2":"2021-09-27T08:37:30.4318022Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:37:30.3536782Z","primaryEndpoints":{"dfs":"https://clitest4ypv67tuvo34umfu5.dfs.core.windows.net/","web":"https://clitest4ypv67tuvo34umfu5.z3.web.core.windows.net/","blob":"https://clitest4ypv67tuvo34umfu5.blob.core.windows.net/","queue":"https://clitest4ypv67tuvo34umfu5.queue.core.windows.net/","table":"https://clitest4ypv67tuvo34umfu5.table.core.windows.net/","file":"https://clitest4ypv67tuvo34umfu5.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdug325lrcvzanqv3lzbjf3is3c3nkte77zapxydbwac3gjkwncn6mb4f7ac5quodl/providers/Microsoft.Storage/storageAccounts/clitest52hhfb76nrue6ykoz","name":"clitest52hhfb76nrue6ykoz","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T01:18:06.6255130Z","key2":"2022-03-18T01:18:06.6255130Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:18:06.6255130Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:18:06.6255130Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:18:06.5317315Z","primaryEndpoints":{"dfs":"https://clitest52hhfb76nrue6ykoz.dfs.core.windows.net/","web":"https://clitest52hhfb76nrue6ykoz.z3.web.core.windows.net/","blob":"https://clitest52hhfb76nrue6ykoz.blob.core.windows.net/","queue":"https://clitest52hhfb76nrue6ykoz.queue.core.windows.net/","table":"https://clitest52hhfb76nrue6ykoz.table.core.windows.net/","file":"https://clitest52hhfb76nrue6ykoz.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglsqzig6e5xb6f6yy7vcn6ga3cecladn475k3busnwddg7bekcbznawxwrs2fzwqsg/providers/Microsoft.Storage/storageAccounts/clitest5em3dvci6rx26joqq","name":"clitest5em3dvci6rx26joqq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-23T22:13:15.3267815Z","key2":"2021-12-23T22:13:15.3267815Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:13:15.3267815Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:13:15.3267815Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:13:15.2330713Z","primaryEndpoints":{"dfs":"https://clitest5em3dvci6rx26joqq.dfs.core.windows.net/","web":"https://clitest5em3dvci6rx26joqq.z3.web.core.windows.net/","blob":"https://clitest5em3dvci6rx26joqq.blob.core.windows.net/","queue":"https://clitest5em3dvci6rx26joqq.queue.core.windows.net/","table":"https://clitest5em3dvci6rx26joqq.table.core.windows.net/","file":"https://clitest5em3dvci6rx26joqq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ktglaqocs7srvx2yzb2oltfjcgzfw4kudvrc374oo4nw2wkuzhlunjobg6gi3as4/providers/Microsoft.Storage/storageAccounts/clitest5tsxqn6bwkbkszmc5","name":"clitest5tsxqn6bwkbkszmc5","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-25T23:44:15.6546117Z","key2":"2022-08-25T23:44:15.6546117Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T23:44:16.2484124Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T23:44:16.2484124Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-25T23:44:15.5608674Z","primaryEndpoints":{"dfs":"https://clitest5tsxqn6bwkbkszmc5.dfs.core.windows.net/","web":"https://clitest5tsxqn6bwkbkszmc5.z3.web.core.windows.net/","blob":"https://clitest5tsxqn6bwkbkszmc5.blob.core.windows.net/","queue":"https://clitest5tsxqn6bwkbkszmc5.queue.core.windows.net/","table":"https://clitest5tsxqn6bwkbkszmc5.table.core.windows.net/","file":"https://clitest5tsxqn6bwkbkszmc5.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xn5tbw5suxir4uuvhka5v4zfg5rmj4em2c6jceeadoa4nzc7b3bdydqwfyqiobus/providers/Microsoft.Storage/storageAccounts/clitest6pwsagzih7oocrr4x","name":"clitest6pwsagzih7oocrr4x","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-17T02:36:37.3270588Z","key2":"2022-06-17T02:36:37.3270588Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-17T02:36:37.9052175Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-17T02:36:37.9052175Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-17T02:36:37.2332988Z","primaryEndpoints":{"dfs":"https://clitest6pwsagzih7oocrr4x.dfs.core.windows.net/","web":"https://clitest6pwsagzih7oocrr4x.z3.web.core.windows.net/","blob":"https://clitest6pwsagzih7oocrr4x.blob.core.windows.net/","queue":"https://clitest6pwsagzih7oocrr4x.queue.core.windows.net/","table":"https://clitest6pwsagzih7oocrr4x.table.core.windows.net/","file":"https://clitest6pwsagzih7oocrr4x.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq5owppg4dci2qdrj7vzc5jfe2wkpqdndt73aoulpqbpqyme4ys6qp5yegc6x72nfg/providers/Microsoft.Storage/storageAccounts/clitest6xc3bnyzkpbv277hw","name":"clitest6xc3bnyzkpbv277hw","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-03T23:21:13.3577773Z","key2":"2022-03-03T23:21:13.3577773Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:21:13.3733610Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:21:13.3733610Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:21:13.2640292Z","primaryEndpoints":{"dfs":"https://clitest6xc3bnyzkpbv277hw.dfs.core.windows.net/","web":"https://clitest6xc3bnyzkpbv277hw.z3.web.core.windows.net/","blob":"https://clitest6xc3bnyzkpbv277hw.blob.core.windows.net/","queue":"https://clitest6xc3bnyzkpbv277hw.queue.core.windows.net/","table":"https://clitest6xc3bnyzkpbv277hw.table.core.windows.net/","file":"https://clitest6xc3bnyzkpbv277hw.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtzqrijjsdzepstlqsrzx5v3fvkbknlbvid5icevijobsupjxfzvc6jmmkkew4d6gc/providers/Microsoft.Storage/storageAccounts/clitest7v3uutjhsjcjiiqjk","name":"clitest7v3uutjhsjcjiiqjk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-15T14:22:54.2862227Z","key2":"2022-06-15T14:22:54.2862227Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-15T14:22:54.5205983Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-15T14:22:54.5205983Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-15T14:22:54.1612401Z","primaryEndpoints":{"dfs":"https://clitest7v3uutjhsjcjiiqjk.dfs.core.windows.net/","web":"https://clitest7v3uutjhsjcjiiqjk.z3.web.core.windows.net/","blob":"https://clitest7v3uutjhsjcjiiqjk.blob.core.windows.net/","queue":"https://clitest7v3uutjhsjcjiiqjk.queue.core.windows.net/","table":"https://clitest7v3uutjhsjcjiiqjk.table.core.windows.net/","file":"https://clitest7v3uutjhsjcjiiqjk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvricmqr6tftghdb2orhfvwwflb5yrmjlbbxfre27xo56m3yaowwocmuew3mkp6dch/providers/Microsoft.Storage/storageAccounts/clitesta6vvdbwzccmdhnmh7","name":"clitesta6vvdbwzccmdhnmh7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-10T23:46:41.0268928Z","key2":"2022-03-10T23:46:41.0268928Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-10T23:46:41.0425154Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-10T23:46:41.0425154Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-10T23:46:40.9331185Z","primaryEndpoints":{"dfs":"https://clitesta6vvdbwzccmdhnmh7.dfs.core.windows.net/","web":"https://clitesta6vvdbwzccmdhnmh7.z3.web.core.windows.net/","blob":"https://clitesta6vvdbwzccmdhnmh7.blob.core.windows.net/","queue":"https://clitesta6vvdbwzccmdhnmh7.queue.core.windows.net/","table":"https://clitesta6vvdbwzccmdhnmh7.table.core.windows.net/","file":"https://clitesta6vvdbwzccmdhnmh7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6/providers/Microsoft.Storage/storageAccounts/clitestajyrm6yrgbf4c5i2s","name":"clitestajyrm6yrgbf4c5i2s","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:36:26.5400357Z","key2":"2021-09-26T05:36:26.5400357Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:36:26.4619069Z","primaryEndpoints":{"dfs":"https://clitestajyrm6yrgbf4c5i2s.dfs.core.windows.net/","web":"https://clitestajyrm6yrgbf4c5i2s.z3.web.core.windows.net/","blob":"https://clitestajyrm6yrgbf4c5i2s.blob.core.windows.net/","queue":"https://clitestajyrm6yrgbf4c5i2s.queue.core.windows.net/","table":"https://clitestajyrm6yrgbf4c5i2s.table.core.windows.net/","file":"https://clitestajyrm6yrgbf4c5i2s.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdj7xp7djs6mthgx5vg7frkzob6fa4r4ee6jyrvgncvnjvn36lppo6bqbxzdz75tll/providers/Microsoft.Storage/storageAccounts/clitestb3umzlekxb2476otp","name":"clitestb3umzlekxb2476otp","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-21T23:03:50.2317299Z","key2":"2022-04-21T23:03:50.2317299Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:03:50.2317299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:03:50.2317299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:03:50.1379870Z","primaryEndpoints":{"dfs":"https://clitestb3umzlekxb2476otp.dfs.core.windows.net/","web":"https://clitestb3umzlekxb2476otp.z3.web.core.windows.net/","blob":"https://clitestb3umzlekxb2476otp.blob.core.windows.net/","queue":"https://clitestb3umzlekxb2476otp.queue.core.windows.net/","table":"https://clitestb3umzlekxb2476otp.table.core.windows.net/","file":"https://clitestb3umzlekxb2476otp.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaw64vj3it6oap22mn6a3srkbit3tpoizzmhlztahj2iiulsdnnv6awcybcv6ewogj/providers/Microsoft.Storage/storageAccounts/clitestbiuu3kqzs7c4mqban","name":"clitestbiuu3kqzs7c4mqban","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-19T22:48:31.9222955Z","key2":"2022-05-19T22:48:31.9222955Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-19T22:48:32.1722850Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-19T22:48:32.1722850Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-19T22:48:31.8286102Z","primaryEndpoints":{"dfs":"https://clitestbiuu3kqzs7c4mqban.dfs.core.windows.net/","web":"https://clitestbiuu3kqzs7c4mqban.z3.web.core.windows.net/","blob":"https://clitestbiuu3kqzs7c4mqban.blob.core.windows.net/","queue":"https://clitestbiuu3kqzs7c4mqban.queue.core.windows.net/","table":"https://clitestbiuu3kqzs7c4mqban.table.core.windows.net/","file":"https://clitestbiuu3kqzs7c4mqban.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglbpqpmgzjcfuaz4feleprn435rcjy72gfcclbzlno6zqjglg4vmjeekjfwp5ftczi/providers/Microsoft.Storage/storageAccounts/clitestbokalj4mocrwa4z32","name":"clitestbokalj4mocrwa4z32","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:30:16.8234389Z","key2":"2021-10-29T22:30:16.8234389Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:30:16.7453107Z","primaryEndpoints":{"dfs":"https://clitestbokalj4mocrwa4z32.dfs.core.windows.net/","web":"https://clitestbokalj4mocrwa4z32.z3.web.core.windows.net/","blob":"https://clitestbokalj4mocrwa4z32.blob.core.windows.net/","queue":"https://clitestbokalj4mocrwa4z32.queue.core.windows.net/","table":"https://clitestbokalj4mocrwa4z32.table.core.windows.net/","file":"https://clitestbokalj4mocrwa4z32.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtspw4qvairmgdzy7n5rmnqkgvofttquawuj4gqd2vfu4vovezcfc7sf547caizzrh/providers/Microsoft.Storage/storageAccounts/clitestbsembxlqwsnj2fgge","name":"clitestbsembxlqwsnj2fgge","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-07T22:55:33.1867654Z","key2":"2022-04-07T22:55:33.1867654Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T22:55:33.2023896Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T22:55:33.2023896Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T22:55:33.0930101Z","primaryEndpoints":{"dfs":"https://clitestbsembxlqwsnj2fgge.dfs.core.windows.net/","web":"https://clitestbsembxlqwsnj2fgge.z3.web.core.windows.net/","blob":"https://clitestbsembxlqwsnj2fgge.blob.core.windows.net/","queue":"https://clitestbsembxlqwsnj2fgge.queue.core.windows.net/","table":"https://clitestbsembxlqwsnj2fgge.table.core.windows.net/","file":"https://clitestbsembxlqwsnj2fgge.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgslmenloyni5hf6ungu5xnok6xazrqmqukr6gorcq64rq2u7hadght6uvzpmpbpg3u/providers/Microsoft.Storage/storageAccounts/clitestcw54yeqtizanybuwo","name":"clitestcw54yeqtizanybuwo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-14T23:27:19.9861627Z","key2":"2022-04-14T23:27:19.9861627Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0017698Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0017698Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:27:19.8923715Z","primaryEndpoints":{"dfs":"https://clitestcw54yeqtizanybuwo.dfs.core.windows.net/","web":"https://clitestcw54yeqtizanybuwo.z3.web.core.windows.net/","blob":"https://clitestcw54yeqtizanybuwo.blob.core.windows.net/","queue":"https://clitestcw54yeqtizanybuwo.queue.core.windows.net/","table":"https://clitestcw54yeqtizanybuwo.table.core.windows.net/","file":"https://clitestcw54yeqtizanybuwo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzqoxctlppqseceswyeq36zau2eysrbugzmir6vxpsztoivt4atecrszzqgzpvjalj/providers/Microsoft.Storage/storageAccounts/clitestexazhooj6txsp4bif","name":"clitestexazhooj6txsp4bif","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:28:55.7862697Z","key2":"2021-09-26T06:28:55.7862697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:28:55.7237634Z","primaryEndpoints":{"dfs":"https://clitestexazhooj6txsp4bif.dfs.core.windows.net/","web":"https://clitestexazhooj6txsp4bif.z3.web.core.windows.net/","blob":"https://clitestexazhooj6txsp4bif.blob.core.windows.net/","queue":"https://clitestexazhooj6txsp4bif.queue.core.windows.net/","table":"https://clitestexazhooj6txsp4bif.table.core.windows.net/","file":"https://clitestexazhooj6txsp4bif.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgastf744wty5rbe3b42dtbtj6m3u4njqshp3uezxwhayjl4gumhvlnx4umngpnd37j/providers/Microsoft.Storage/storageAccounts/clitestfoxs5cndjzuwfbysg","name":"clitestfoxs5cndjzuwfbysg","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T05:29:08.4012945Z","key2":"2022-03-16T05:29:08.4012945Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:29:08.4012945Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:29:08.4012945Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:29:08.3076366Z","primaryEndpoints":{"dfs":"https://clitestfoxs5cndjzuwfbysg.dfs.core.windows.net/","web":"https://clitestfoxs5cndjzuwfbysg.z3.web.core.windows.net/","blob":"https://clitestfoxs5cndjzuwfbysg.blob.core.windows.net/","queue":"https://clitestfoxs5cndjzuwfbysg.queue.core.windows.net/","table":"https://clitestfoxs5cndjzuwfbysg.table.core.windows.net/","file":"https://clitestfoxs5cndjzuwfbysg.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqgjamsip45eiod37k5ava3icxn6g65gkuyffmj7fd2ipic36deyjqhzs5f5amepjw/providers/Microsoft.Storage/storageAccounts/clitestfseuqgiqhdcp3ufhh","name":"clitestfseuqgiqhdcp3ufhh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-16T23:43:04.7242746Z","key2":"2021-12-16T23:43:04.7242746Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:43:04.7242746Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:43:04.7242746Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:43:04.6461064Z","primaryEndpoints":{"dfs":"https://clitestfseuqgiqhdcp3ufhh.dfs.core.windows.net/","web":"https://clitestfseuqgiqhdcp3ufhh.z3.web.core.windows.net/","blob":"https://clitestfseuqgiqhdcp3ufhh.blob.core.windows.net/","queue":"https://clitestfseuqgiqhdcp3ufhh.queue.core.windows.net/","table":"https://clitestfseuqgiqhdcp3ufhh.table.core.windows.net/","file":"https://clitestfseuqgiqhdcp3ufhh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7hrj5nxaduamzjezbj6p4tni7cmywwcvi6uyksds5honxydadbriqr4xmodfqta5/providers/Microsoft.Storage/storageAccounts/clitestfuhzopy37of7eejg3","name":"clitestfuhzopy37of7eejg3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-14T16:26:57.9366978Z","key2":"2022-08-14T16:26:57.9366978Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-14T16:26:58.6398145Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-14T16:26:58.6398145Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-14T16:26:57.6554285Z","primaryEndpoints":{"dfs":"https://clitestfuhzopy37of7eejg3.dfs.core.windows.net/","web":"https://clitestfuhzopy37of7eejg3.z3.web.core.windows.net/","blob":"https://clitestfuhzopy37of7eejg3.blob.core.windows.net/","queue":"https://clitestfuhzopy37of7eejg3.queue.core.windows.net/","table":"https://clitestfuhzopy37of7eejg3.table.core.windows.net/","file":"https://clitestfuhzopy37of7eejg3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4bazn4hnlcnsaasp63k6nvrlmtkyo7dqcjkyopsehticnihafl57ntorbz7ixqwos/providers/Microsoft.Storage/storageAccounts/clitestgnremsz2uxbgdy6uo","name":"clitestgnremsz2uxbgdy6uo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:33:08.0149596Z","key2":"2021-11-05T08:33:08.0149596Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:33:07.9368092Z","primaryEndpoints":{"dfs":"https://clitestgnremsz2uxbgdy6uo.dfs.core.windows.net/","web":"https://clitestgnremsz2uxbgdy6uo.z3.web.core.windows.net/","blob":"https://clitestgnremsz2uxbgdy6uo.blob.core.windows.net/","queue":"https://clitestgnremsz2uxbgdy6uo.queue.core.windows.net/","table":"https://clitestgnremsz2uxbgdy6uo.table.core.windows.net/","file":"https://clitestgnremsz2uxbgdy6uo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiojjcuhfzayzrer4xt3xelo5irqyhos7zzodnkr36kccmj3tkike4hj2z333kq54w/providers/Microsoft.Storage/storageAccounts/clitestgzh5gtd7dvvavu4r7","name":"clitestgzh5gtd7dvvavu4r7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-24T23:41:39.2992459Z","key2":"2022-03-24T23:41:39.2992459Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:41:39.3148704Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:41:39.3148704Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:41:39.2057201Z","primaryEndpoints":{"dfs":"https://clitestgzh5gtd7dvvavu4r7.dfs.core.windows.net/","web":"https://clitestgzh5gtd7dvvavu4r7.z3.web.core.windows.net/","blob":"https://clitestgzh5gtd7dvvavu4r7.blob.core.windows.net/","queue":"https://clitestgzh5gtd7dvvavu4r7.queue.core.windows.net/","table":"https://clitestgzh5gtd7dvvavu4r7.table.core.windows.net/","file":"https://clitestgzh5gtd7dvvavu4r7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2tpxrzs7z6qdlv2mxxfplr6dkbzeqckqvgwrjayrdp3lriz36zbmn75vcu7kjieod/providers/Microsoft.Storage/storageAccounts/clitesth3pnvut4i3zilfkvh","name":"clitesth3pnvut4i3zilfkvh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-12T00:15:30.4913406Z","key2":"2022-08-12T00:15:30.4913406Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T00:15:31.1319714Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T00:15:31.1319714Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-12T00:15:30.3819640Z","primaryEndpoints":{"dfs":"https://clitesth3pnvut4i3zilfkvh.dfs.core.windows.net/","web":"https://clitesth3pnvut4i3zilfkvh.z3.web.core.windows.net/","blob":"https://clitesth3pnvut4i3zilfkvh.blob.core.windows.net/","queue":"https://clitesth3pnvut4i3zilfkvh.queue.core.windows.net/","table":"https://clitesth3pnvut4i3zilfkvh.table.core.windows.net/","file":"https://clitesth3pnvut4i3zilfkvh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn2hrmou3vupc7hxv534r6ythn2qz6v45svfb666d75bigid4v562yvcrcu3zvopvd/providers/Microsoft.Storage/storageAccounts/clitesthn6lf7bmqfq4lihgr","name":"clitesthn6lf7bmqfq4lihgr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:36:25.4655609Z","key2":"2021-10-22T23:36:25.4655609Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:36:25.4186532Z","primaryEndpoints":{"dfs":"https://clitesthn6lf7bmqfq4lihgr.dfs.core.windows.net/","web":"https://clitesthn6lf7bmqfq4lihgr.z3.web.core.windows.net/","blob":"https://clitesthn6lf7bmqfq4lihgr.blob.core.windows.net/","queue":"https://clitesthn6lf7bmqfq4lihgr.queue.core.windows.net/","table":"https://clitesthn6lf7bmqfq4lihgr.table.core.windows.net/","file":"https://clitesthn6lf7bmqfq4lihgr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3uh3ecchugblssjzzurmbz3fwz3si25txvdhbc3t7jo6zlnbitco2s4mnnjpqst2v/providers/Microsoft.Storage/storageAccounts/clitestif7zaqb3uji3nhacq","name":"clitestif7zaqb3uji3nhacq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-26T08:48:10.2092425Z","key2":"2022-04-26T08:48:10.2092425Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:48:10.2092425Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:48:10.2092425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:48:10.0998779Z","primaryEndpoints":{"dfs":"https://clitestif7zaqb3uji3nhacq.dfs.core.windows.net/","web":"https://clitestif7zaqb3uji3nhacq.z3.web.core.windows.net/","blob":"https://clitestif7zaqb3uji3nhacq.blob.core.windows.net/","queue":"https://clitestif7zaqb3uji3nhacq.queue.core.windows.net/","table":"https://clitestif7zaqb3uji3nhacq.table.core.windows.net/","file":"https://clitestif7zaqb3uji3nhacq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp2xbgoesryqzo5xmkyhlnevim7kqx4eogq4wkogaaq2ghaprwuoarxbgvtqfhp3vn/providers/Microsoft.Storage/storageAccounts/clitestllbgrqw2q3ll4fl2a","name":"clitestllbgrqw2q3ll4fl2a","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-18T08:33:03.9946949Z","key2":"2022-08-18T08:33:03.9946949Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T08:33:04.3071831Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T08:33:04.3071831Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-18T08:33:03.8852891Z","primaryEndpoints":{"dfs":"https://clitestllbgrqw2q3ll4fl2a.dfs.core.windows.net/","web":"https://clitestllbgrqw2q3ll4fl2a.z3.web.core.windows.net/","blob":"https://clitestllbgrqw2q3ll4fl2a.blob.core.windows.net/","queue":"https://clitestllbgrqw2q3ll4fl2a.queue.core.windows.net/","table":"https://clitestllbgrqw2q3ll4fl2a.table.core.windows.net/","file":"https://clitestllbgrqw2q3ll4fl2a.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddpmpp3buqip4f3ztkpw2okh4vd5lblxcs36olwlxmrn6hqzkgms3jgye5t72fahh/providers/Microsoft.Storage/storageAccounts/clitestlp7xyjhqdanlvdk7l","name":"clitestlp7xyjhqdanlvdk7l","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-30T22:32:05.3181693Z","key2":"2021-12-30T22:32:05.3181693Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:32:05.3181693Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:32:05.3181693Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:32:05.2244193Z","primaryEndpoints":{"dfs":"https://clitestlp7xyjhqdanlvdk7l.dfs.core.windows.net/","web":"https://clitestlp7xyjhqdanlvdk7l.z3.web.core.windows.net/","blob":"https://clitestlp7xyjhqdanlvdk7l.blob.core.windows.net/","queue":"https://clitestlp7xyjhqdanlvdk7l.queue.core.windows.net/","table":"https://clitestlp7xyjhqdanlvdk7l.table.core.windows.net/","file":"https://clitestlp7xyjhqdanlvdk7l.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiqgpdt6kvdporvteyacy5t5zw43gekna5gephtplex4buchsqnucjh24ke6ian63g/providers/Microsoft.Storage/storageAccounts/clitestlpnuh5cbq4gzlb4mt","name":"clitestlpnuh5cbq4gzlb4mt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T21:40:23.1450434Z","key2":"2022-03-17T21:40:23.1450434Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T21:40:23.1606676Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T21:40:23.1606676Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T21:40:23.0669136Z","primaryEndpoints":{"dfs":"https://clitestlpnuh5cbq4gzlb4mt.dfs.core.windows.net/","web":"https://clitestlpnuh5cbq4gzlb4mt.z3.web.core.windows.net/","blob":"https://clitestlpnuh5cbq4gzlb4mt.blob.core.windows.net/","queue":"https://clitestlpnuh5cbq4gzlb4mt.queue.core.windows.net/","table":"https://clitestlpnuh5cbq4gzlb4mt.table.core.windows.net/","file":"https://clitestlpnuh5cbq4gzlb4mt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyyky3pdv7kfgca2zw6tt2uuyakcfh4mhe5jv652ywkhjplo2g3hkpg5l5vlzmscx/providers/Microsoft.Storage/storageAccounts/clitestlrazz3fr4p7ma2aqu","name":"clitestlrazz3fr4p7ma2aqu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:26:22.0140081Z","key2":"2021-09-26T06:26:22.0140081Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:26:21.9514992Z","primaryEndpoints":{"dfs":"https://clitestlrazz3fr4p7ma2aqu.dfs.core.windows.net/","web":"https://clitestlrazz3fr4p7ma2aqu.z3.web.core.windows.net/","blob":"https://clitestlrazz3fr4p7ma2aqu.blob.core.windows.net/","queue":"https://clitestlrazz3fr4p7ma2aqu.queue.core.windows.net/","table":"https://clitestlrazz3fr4p7ma2aqu.table.core.windows.net/","file":"https://clitestlrazz3fr4p7ma2aqu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wjfol23jdbl2gkdoeiou4nae4tnyxkvqazscvbwkazi5dbugwnwlcr7gn2nvblbz/providers/Microsoft.Storage/storageAccounts/clitestlvmg3eu2v3vfviots","name":"clitestlvmg3eu2v3vfviots","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-25T00:19:23.5149380Z","key2":"2022-02-25T00:19:23.5149380Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:19:23.5305640Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:19:23.5305640Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:19:23.4055624Z","primaryEndpoints":{"dfs":"https://clitestlvmg3eu2v3vfviots.dfs.core.windows.net/","web":"https://clitestlvmg3eu2v3vfviots.z3.web.core.windows.net/","blob":"https://clitestlvmg3eu2v3vfviots.blob.core.windows.net/","queue":"https://clitestlvmg3eu2v3vfviots.queue.core.windows.net/","table":"https://clitestlvmg3eu2v3vfviots.table.core.windows.net/","file":"https://clitestlvmg3eu2v3vfviots.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgibc6w6pt2cu4nkppzr7rhgsrli5jhaumxaexydrvzpemxhixixcac5un3lkhugutn/providers/Microsoft.Storage/storageAccounts/clitestm3o7urdechvnvggxa","name":"clitestm3o7urdechvnvggxa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:04:25.7055241Z","key2":"2021-11-04T22:04:25.7055241Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:04:25.6274146Z","primaryEndpoints":{"dfs":"https://clitestm3o7urdechvnvggxa.dfs.core.windows.net/","web":"https://clitestm3o7urdechvnvggxa.z3.web.core.windows.net/","blob":"https://clitestm3o7urdechvnvggxa.blob.core.windows.net/","queue":"https://clitestm3o7urdechvnvggxa.queue.core.windows.net/","table":"https://clitestm3o7urdechvnvggxa.table.core.windows.net/","file":"https://clitestm3o7urdechvnvggxa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgod6ukvpdyodfbumzqyctb3mizfldmw7m4kczmcvtiwdw7eknpoq2uxsr3gc5qs6ia/providers/Microsoft.Storage/storageAccounts/clitestmekftj553567izfaa","name":"clitestmekftj553567izfaa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T22:40:57.9850091Z","key2":"2022-03-31T22:40:57.9850091Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:40:58.0006083Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:40:58.0006083Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:40:57.8912800Z","primaryEndpoints":{"dfs":"https://clitestmekftj553567izfaa.dfs.core.windows.net/","web":"https://clitestmekftj553567izfaa.z3.web.core.windows.net/","blob":"https://clitestmekftj553567izfaa.blob.core.windows.net/","queue":"https://clitestmekftj553567izfaa.queue.core.windows.net/","table":"https://clitestmekftj553567izfaa.table.core.windows.net/","file":"https://clitestmekftj553567izfaa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5gexz53gwezjaj2k73fecuuc4yqlddops5ntbekppouzb4x7h6bpbyvfme5nlourk/providers/Microsoft.Storage/storageAccounts/clitestmjpad5ax6f4npu3mz","name":"clitestmjpad5ax6f4npu3mz","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T08:55:42.1539279Z","key2":"2022-03-16T08:55:42.1539279Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T08:55:42.1539279Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T08:55:42.1539279Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T08:55:42.0602013Z","primaryEndpoints":{"dfs":"https://clitestmjpad5ax6f4npu3mz.dfs.core.windows.net/","web":"https://clitestmjpad5ax6f4npu3mz.z3.web.core.windows.net/","blob":"https://clitestmjpad5ax6f4npu3mz.blob.core.windows.net/","queue":"https://clitestmjpad5ax6f4npu3mz.queue.core.windows.net/","table":"https://clitestmjpad5ax6f4npu3mz.table.core.windows.net/","file":"https://clitestmjpad5ax6f4npu3mz.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf/providers/Microsoft.Storage/storageAccounts/clitestmyjybsngqmztsnzyt","name":"clitestmyjybsngqmztsnzyt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:30:18.6096170Z","key2":"2021-09-26T05:30:18.6096170Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:30:18.5314899Z","primaryEndpoints":{"dfs":"https://clitestmyjybsngqmztsnzyt.dfs.core.windows.net/","web":"https://clitestmyjybsngqmztsnzyt.z3.web.core.windows.net/","blob":"https://clitestmyjybsngqmztsnzyt.blob.core.windows.net/","queue":"https://clitestmyjybsngqmztsnzyt.queue.core.windows.net/","table":"https://clitestmyjybsngqmztsnzyt.table.core.windows.net/","file":"https://clitestmyjybsngqmztsnzyt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrhy25vxju45rn6ocljnluag55ozonubdqz2c6h3ey7iwwilqf56dk73wwpl6tz7ma/providers/Microsoft.Storage/storageAccounts/clitestn6hd6em44t54zt6vl","name":"clitestn6hd6em44t54zt6vl","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-19T02:54:14.7026149Z","key2":"2022-08-19T02:54:14.7026149Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:54:14.9213805Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:54:14.9213805Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-19T02:54:14.5932350Z","primaryEndpoints":{"dfs":"https://clitestn6hd6em44t54zt6vl.dfs.core.windows.net/","web":"https://clitestn6hd6em44t54zt6vl.z3.web.core.windows.net/","blob":"https://clitestn6hd6em44t54zt6vl.blob.core.windows.net/","queue":"https://clitestn6hd6em44t54zt6vl.queue.core.windows.net/","table":"https://clitestn6hd6em44t54zt6vl.table.core.windows.net/","file":"https://clitestn6hd6em44t54zt6vl.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2abywok236kysqgqh6yyxw5hjsmd2oiv7fmmzca4bdkfvsyhup2g3flygvn45gbtp/providers/Microsoft.Storage/storageAccounts/clitestnwqabo3kuhvx6svgt","name":"clitestnwqabo3kuhvx6svgt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-23T03:42:52.5821333Z","key2":"2022-02-23T03:42:52.5821333Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:42:52.5977587Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:42:52.5977587Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:42:52.4883542Z","primaryEndpoints":{"dfs":"https://clitestnwqabo3kuhvx6svgt.dfs.core.windows.net/","web":"https://clitestnwqabo3kuhvx6svgt.z3.web.core.windows.net/","blob":"https://clitestnwqabo3kuhvx6svgt.blob.core.windows.net/","queue":"https://clitestnwqabo3kuhvx6svgt.queue.core.windows.net/","table":"https://clitestnwqabo3kuhvx6svgt.table.core.windows.net/","file":"https://clitestnwqabo3kuhvx6svgt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbksbwoy7iftsvok2gu7el6jq32a53l75d3amp4qff74lwqen6nypkv2vsy5qpvdx6/providers/Microsoft.Storage/storageAccounts/clitestnx46jh36sfhiun4zr","name":"clitestnx46jh36sfhiun4zr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:46:06.0337216Z","key2":"2021-09-26T06:46:06.0337216Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:46:05.9555808Z","primaryEndpoints":{"dfs":"https://clitestnx46jh36sfhiun4zr.dfs.core.windows.net/","web":"https://clitestnx46jh36sfhiun4zr.z3.web.core.windows.net/","blob":"https://clitestnx46jh36sfhiun4zr.blob.core.windows.net/","queue":"https://clitestnx46jh36sfhiun4zr.queue.core.windows.net/","table":"https://clitestnx46jh36sfhiun4zr.table.core.windows.net/","file":"https://clitestnx46jh36sfhiun4zr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33fo62u6qo54y4oh6ubodzg5drtpqjvfeaxkl7eqcioetepluk6x6j2y26gadsnlb/providers/Microsoft.Storage/storageAccounts/clitestnyptbvai7mjrv4d36","name":"clitestnyptbvai7mjrv4d36","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:38:37.8872316Z","key2":"2021-09-26T06:38:37.8872316Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:38:37.8247073Z","primaryEndpoints":{"dfs":"https://clitestnyptbvai7mjrv4d36.dfs.core.windows.net/","web":"https://clitestnyptbvai7mjrv4d36.z3.web.core.windows.net/","blob":"https://clitestnyptbvai7mjrv4d36.blob.core.windows.net/","queue":"https://clitestnyptbvai7mjrv4d36.queue.core.windows.net/","table":"https://clitestnyptbvai7mjrv4d36.table.core.windows.net/","file":"https://clitestnyptbvai7mjrv4d36.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm4ewrfpsmwsfbapbb7k3cslbr34yplftoedawvzwr66vnki7qslc7yxcjg74xcdt4/providers/Microsoft.Storage/storageAccounts/clitestobi4eotlnsa6zh3bq","name":"clitestobi4eotlnsa6zh3bq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T09:39:15.5200077Z","key2":"2022-02-24T09:39:15.5200077Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.5356357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.5356357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:39:15.4262587Z","primaryEndpoints":{"dfs":"https://clitestobi4eotlnsa6zh3bq.dfs.core.windows.net/","web":"https://clitestobi4eotlnsa6zh3bq.z3.web.core.windows.net/","blob":"https://clitestobi4eotlnsa6zh3bq.blob.core.windows.net/","queue":"https://clitestobi4eotlnsa6zh3bq.queue.core.windows.net/","table":"https://clitestobi4eotlnsa6zh3bq.table.core.windows.net/","file":"https://clitestobi4eotlnsa6zh3bq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzvfnrnbiodivv7py3ttijdf62ufwz3obvcpzey36zr4h56myn3sajeenb67t2vufx/providers/Microsoft.Storage/storageAccounts/clitestokj67zonpbcy4h3ut","name":"clitestokj67zonpbcy4h3ut","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T13:51:42.3909029Z","key2":"2022-03-17T13:51:42.3909029Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T13:51:42.4065705Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T13:51:42.4065705Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T13:51:42.3127731Z","primaryEndpoints":{"dfs":"https://clitestokj67zonpbcy4h3ut.dfs.core.windows.net/","web":"https://clitestokj67zonpbcy4h3ut.z3.web.core.windows.net/","blob":"https://clitestokj67zonpbcy4h3ut.blob.core.windows.net/","queue":"https://clitestokj67zonpbcy4h3ut.queue.core.windows.net/","table":"https://clitestokj67zonpbcy4h3ut.table.core.windows.net/","file":"https://clitestokj67zonpbcy4h3ut.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg27eecv3qlcw6ol3xvlbfxfoasylnf4kby2jp2xlzkuk3skinkbsynd7fskj5fpsy3/providers/Microsoft.Storage/storageAccounts/clitestonivdoendik6ud5xu","name":"clitestonivdoendik6ud5xu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T05:25:23.2474815Z","key2":"2021-12-09T05:25:23.2474815Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:25:23.2474815Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:25:23.2474815Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:25:23.1693829Z","primaryEndpoints":{"dfs":"https://clitestonivdoendik6ud5xu.dfs.core.windows.net/","web":"https://clitestonivdoendik6ud5xu.z3.web.core.windows.net/","blob":"https://clitestonivdoendik6ud5xu.blob.core.windows.net/","queue":"https://clitestonivdoendik6ud5xu.queue.core.windows.net/","table":"https://clitestonivdoendik6ud5xu.table.core.windows.net/","file":"https://clitestonivdoendik6ud5xu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4g3f5lihvl5ymspqef7wlq3ougtwcl5cysr5hf26ft6qecpqygvuavvpaffm4jp2z/providers/Microsoft.Storage/storageAccounts/clitestppyuah3f63vji25wh","name":"clitestppyuah3f63vji25wh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T22:35:14.8304282Z","key2":"2022-02-24T22:35:14.8304282Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:35:14.8304282Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:35:14.8304282Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:35:14.7210571Z","primaryEndpoints":{"dfs":"https://clitestppyuah3f63vji25wh.dfs.core.windows.net/","web":"https://clitestppyuah3f63vji25wh.z3.web.core.windows.net/","blob":"https://clitestppyuah3f63vji25wh.blob.core.windows.net/","queue":"https://clitestppyuah3f63vji25wh.queue.core.windows.net/","table":"https://clitestppyuah3f63vji25wh.table.core.windows.net/","file":"https://clitestppyuah3f63vji25wh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxbcxx4ank64f2iixhvgd2jaf76ixz7z6ehcg4wgtoikus5rrg53sdli6a5acuxg7/providers/Microsoft.Storage/storageAccounts/clitestqltbsnaacri7pnm66","name":"clitestqltbsnaacri7pnm66","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-05T23:02:57.0468964Z","key2":"2022-05-05T23:02:57.0468964Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:02:57.0468964Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:02:57.0468964Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:02:56.9375574Z","primaryEndpoints":{"dfs":"https://clitestqltbsnaacri7pnm66.dfs.core.windows.net/","web":"https://clitestqltbsnaacri7pnm66.z3.web.core.windows.net/","blob":"https://clitestqltbsnaacri7pnm66.blob.core.windows.net/","queue":"https://clitestqltbsnaacri7pnm66.queue.core.windows.net/","table":"https://clitestqltbsnaacri7pnm66.table.core.windows.net/","file":"https://clitestqltbsnaacri7pnm66.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg64qpduwrlexqquu7nbuqpt6z2nalyqnyocfoi4qdaimlmhxln52mob3fupyseekfc/providers/Microsoft.Storage/storageAccounts/clitestreox7uet2ivegt7al","name":"clitestreox7uet2ivegt7al","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-18T16:14:49.0740745Z","key2":"2022-08-18T16:14:49.0740745Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T16:14:49.5896749Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T16:14:49.5896749Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-18T16:14:48.9646817Z","primaryEndpoints":{"dfs":"https://clitestreox7uet2ivegt7al.dfs.core.windows.net/","web":"https://clitestreox7uet2ivegt7al.z3.web.core.windows.net/","blob":"https://clitestreox7uet2ivegt7al.blob.core.windows.net/","queue":"https://clitestreox7uet2ivegt7al.queue.core.windows.net/","table":"https://clitestreox7uet2ivegt7al.table.core.windows.net/","file":"https://clitestreox7uet2ivegt7al.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj4euz2qks4a65suw4yg7q66oyuhws64hd3parve3zm7c7l5i636my5smbzk6cbvis/providers/Microsoft.Storage/storageAccounts/cliteststxx2rebwsjj4m7ev","name":"cliteststxx2rebwsjj4m7ev","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-28T22:28:46.3357090Z","key2":"2022-04-28T22:28:46.3357090Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:28:46.3357090Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:28:46.3357090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:28:46.2419469Z","primaryEndpoints":{"dfs":"https://cliteststxx2rebwsjj4m7ev.dfs.core.windows.net/","web":"https://cliteststxx2rebwsjj4m7ev.z3.web.core.windows.net/","blob":"https://cliteststxx2rebwsjj4m7ev.blob.core.windows.net/","queue":"https://cliteststxx2rebwsjj4m7ev.queue.core.windows.net/","table":"https://cliteststxx2rebwsjj4m7ev.table.core.windows.net/","file":"https://cliteststxx2rebwsjj4m7ev.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7wjguctbigk256arnwsy5cikne5rtgxsungotn3y3cp7nofxioeys2x7dtiknym2a/providers/Microsoft.Storage/storageAccounts/clitesttayxcfhxj5auoke5a","name":"clitesttayxcfhxj5auoke5a","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T23:16:25.2778969Z","key2":"2021-12-09T23:16:25.2778969Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:16:25.2778969Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:16:25.2778969Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:16:25.1841497Z","primaryEndpoints":{"dfs":"https://clitesttayxcfhxj5auoke5a.dfs.core.windows.net/","web":"https://clitesttayxcfhxj5auoke5a.z3.web.core.windows.net/","blob":"https://clitesttayxcfhxj5auoke5a.blob.core.windows.net/","queue":"https://clitesttayxcfhxj5auoke5a.queue.core.windows.net/","table":"https://clitesttayxcfhxj5auoke5a.table.core.windows.net/","file":"https://clitesttayxcfhxj5auoke5a.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxg4uxlys7uvmy36zktg7bufluyydw6zodvea3sscatxtoca52rp53hzgpu7gq5p7s/providers/Microsoft.Storage/storageAccounts/clitesttychkmvzofjn5oztq","name":"clitesttychkmvzofjn5oztq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-26T08:46:40.5509904Z","key2":"2022-04-26T08:46:40.5509904Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:46:40.5509904Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:46:40.5509904Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:46:40.4415826Z","primaryEndpoints":{"dfs":"https://clitesttychkmvzofjn5oztq.dfs.core.windows.net/","web":"https://clitesttychkmvzofjn5oztq.z3.web.core.windows.net/","blob":"https://clitesttychkmvzofjn5oztq.blob.core.windows.net/","queue":"https://clitesttychkmvzofjn5oztq.queue.core.windows.net/","table":"https://clitesttychkmvzofjn5oztq.table.core.windows.net/","file":"https://clitesttychkmvzofjn5oztq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg7tywk7mx4oyp34pr4jo76jp54xi6rrmofingxkdmix2bxupdaavsgm5bscdon7hb/providers/Microsoft.Storage/storageAccounts/clitestupama2samndokm3jd","name":"clitestupama2samndokm3jd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-28T16:48:18.7645760Z","key2":"2022-02-28T16:48:18.7645760Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T16:48:18.7802324Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T16:48:18.7802324Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T16:48:18.6864732Z","primaryEndpoints":{"dfs":"https://clitestupama2samndokm3jd.dfs.core.windows.net/","web":"https://clitestupama2samndokm3jd.z3.web.core.windows.net/","blob":"https://clitestupama2samndokm3jd.blob.core.windows.net/","queue":"https://clitestupama2samndokm3jd.queue.core.windows.net/","table":"https://clitestupama2samndokm3jd.table.core.windows.net/","file":"https://clitestupama2samndokm3jd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglqgc5xdku5ojvlcdmxmxwx4otzrvmtvwkizs74vqyuovzqgtxbocao3wxuey3ckyg/providers/Microsoft.Storage/storageAccounts/clitestvkt5uhqkknoz4z2ps","name":"clitestvkt5uhqkknoz4z2ps","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T15:56:12.2012021Z","key2":"2021-10-22T15:56:12.2012021Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:12.1387094Z","primaryEndpoints":{"dfs":"https://clitestvkt5uhqkknoz4z2ps.dfs.core.windows.net/","web":"https://clitestvkt5uhqkknoz4z2ps.z3.web.core.windows.net/","blob":"https://clitestvkt5uhqkknoz4z2ps.blob.core.windows.net/","queue":"https://clitestvkt5uhqkknoz4z2ps.queue.core.windows.net/","table":"https://clitestvkt5uhqkknoz4z2ps.table.core.windows.net/","file":"https://clitestvkt5uhqkknoz4z2ps.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb6aglzjbgktmouuijj6dzlic4zxyiyz3rvpkaagcnysqv5336hn4e4fogwqavf53q/providers/Microsoft.Storage/storageAccounts/clitestvlciwxue3ibitylva","name":"clitestvlciwxue3ibitylva","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-07T00:11:03.4133197Z","key2":"2022-01-07T00:11:03.4133197Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:11:03.4289603Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:11:03.4289603Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:11:03.3195568Z","primaryEndpoints":{"dfs":"https://clitestvlciwxue3ibitylva.dfs.core.windows.net/","web":"https://clitestvlciwxue3ibitylva.z3.web.core.windows.net/","blob":"https://clitestvlciwxue3ibitylva.blob.core.windows.net/","queue":"https://clitestvlciwxue3ibitylva.queue.core.windows.net/","table":"https://clitestvlciwxue3ibitylva.table.core.windows.net/","file":"https://clitestvlciwxue3ibitylva.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg742gmmbkzphoscnqkjjro5gelzqfg4eicwtcz7tydc6xcgjtt72ilsthdw4u2ujmd/providers/Microsoft.Storage/storageAccounts/clitestvqpk5j3bnpinywycx","name":"clitestvqpk5j3bnpinywycx","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-12T22:51:51.6556911Z","key2":"2022-05-12T22:51:51.6556911Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T22:51:51.6713107Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T22:51:51.6713107Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T22:51:51.5462900Z","primaryEndpoints":{"dfs":"https://clitestvqpk5j3bnpinywycx.dfs.core.windows.net/","web":"https://clitestvqpk5j3bnpinywycx.z3.web.core.windows.net/","blob":"https://clitestvqpk5j3bnpinywycx.blob.core.windows.net/","queue":"https://clitestvqpk5j3bnpinywycx.queue.core.windows.net/","table":"https://clitestvqpk5j3bnpinywycx.table.core.windows.net/","file":"https://clitestvqpk5j3bnpinywycx.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgutbscw3yeekpjfmbbttkbaaf5p4qvmlhnz7bzvh2mnv5pqspgkpkkxjgyahzryr7l/providers/Microsoft.Storage/storageAccounts/clitestvzas7bgpm3s6p2jre","name":"clitestvzas7bgpm3s6p2jre","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-05T00:10:31.4593666Z","key2":"2022-08-05T00:10:31.4593666Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-05T00:10:31.6781294Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-05T00:10:31.6781294Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-05T00:10:31.3499518Z","primaryEndpoints":{"dfs":"https://clitestvzas7bgpm3s6p2jre.dfs.core.windows.net/","web":"https://clitestvzas7bgpm3s6p2jre.z3.web.core.windows.net/","blob":"https://clitestvzas7bgpm3s6p2jre.blob.core.windows.net/","queue":"https://clitestvzas7bgpm3s6p2jre.queue.core.windows.net/","table":"https://clitestvzas7bgpm3s6p2jre.table.core.windows.net/","file":"https://clitestvzas7bgpm3s6p2jre.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk76ijui24h7q2foey6svr7yhnhb6tcuioxiiic7pto4b7aye52xazbtphpkn4igdg/providers/Microsoft.Storage/storageAccounts/clitestwii2xus2tgji433nh","name":"clitestwii2xus2tgji433nh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:07:45.0812213Z","key2":"2021-11-11T22:07:45.0812213Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:45.0031142Z","primaryEndpoints":{"dfs":"https://clitestwii2xus2tgji433nh.dfs.core.windows.net/","web":"https://clitestwii2xus2tgji433nh.z3.web.core.windows.net/","blob":"https://clitestwii2xus2tgji433nh.blob.core.windows.net/","queue":"https://clitestwii2xus2tgji433nh.queue.core.windows.net/","table":"https://clitestwii2xus2tgji433nh.table.core.windows.net/","file":"https://clitestwii2xus2tgji433nh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmdksg3tnpfj5ikmkrjg42qofreubpsr5cdqs5zhcezqj7v5kgrmpx525kvdqm57ya/providers/Microsoft.Storage/storageAccounts/clitesty7sgxo5udzywq7e2x","name":"clitesty7sgxo5udzywq7e2x","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-25T22:58:47.0325764Z","key2":"2021-11-25T22:58:47.0325764Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T22:58:47.0325764Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T22:58:47.0325764Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T22:58:46.9231863Z","primaryEndpoints":{"dfs":"https://clitesty7sgxo5udzywq7e2x.dfs.core.windows.net/","web":"https://clitesty7sgxo5udzywq7e2x.z3.web.core.windows.net/","blob":"https://clitesty7sgxo5udzywq7e2x.blob.core.windows.net/","queue":"https://clitesty7sgxo5udzywq7e2x.queue.core.windows.net/","table":"https://clitesty7sgxo5udzywq7e2x.table.core.windows.net/","file":"https://clitesty7sgxo5udzywq7e2x.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2s77glmcoemgtgmlcgi7repejuetyjuabg2vruyc3ayj4u66cvgdpdofhcxrql5h5/providers/Microsoft.Storage/storageAccounts/clitestycqidlsdiibjyb3t4","name":"clitestycqidlsdiibjyb3t4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T03:39:28.2566482Z","key2":"2022-03-18T03:39:28.2566482Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:39:28.2566482Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:39:28.2566482Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:39:28.1472265Z","primaryEndpoints":{"dfs":"https://clitestycqidlsdiibjyb3t4.dfs.core.windows.net/","web":"https://clitestycqidlsdiibjyb3t4.z3.web.core.windows.net/","blob":"https://clitestycqidlsdiibjyb3t4.blob.core.windows.net/","queue":"https://clitestycqidlsdiibjyb3t4.queue.core.windows.net/","table":"https://clitestycqidlsdiibjyb3t4.table.core.windows.net/","file":"https://clitestycqidlsdiibjyb3t4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrq7ijqostqq5aahlpjr7formy46bcwnloyvgqqn3ztsmo4rfypznsbm6x6wq7m4f/providers/Microsoft.Storage/storageAccounts/clitestyx33svgzm5sxgbbwr","name":"clitestyx33svgzm5sxgbbwr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T07:41:49.5764921Z","key2":"2022-03-17T07:41:49.5764921Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:41:49.5921170Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:41:49.5921170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:41:49.4827371Z","primaryEndpoints":{"dfs":"https://clitestyx33svgzm5sxgbbwr.dfs.core.windows.net/","web":"https://clitestyx33svgzm5sxgbbwr.z3.web.core.windows.net/","blob":"https://clitestyx33svgzm5sxgbbwr.blob.core.windows.net/","queue":"https://clitestyx33svgzm5sxgbbwr.queue.core.windows.net/","table":"https://clitestyx33svgzm5sxgbbwr.table.core.windows.net/","file":"https://clitestyx33svgzm5sxgbbwr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Storage/storageAccounts/saeuapeast","name":"saeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-08T07:14:49.0935409Z","key2":"2022-08-08T07:14:49.0935409Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-08T07:14:49.4529176Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-08T07:14:49.4529176Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-08T07:14:48.9997460Z","primaryEndpoints":{"dfs":"https://saeuapeast.dfs.core.windows.net/","web":"https://saeuapeast.z3.web.core.windows.net/","blob":"https://saeuapeast.blob.core.windows.net/","queue":"https://saeuapeast.queue.core.windows.net/","table":"https://saeuapeast.table.core.windows.net/","file":"https://saeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://saeuapeast-secondary.dfs.core.windows.net/","web":"https://saeuapeast-secondary.z3.web.core.windows.net/","blob":"https://saeuapeast-secondary.blob.core.windows.net/","queue":"https://saeuapeast-secondary.queue.core.windows.net/","table":"https://saeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/ysdnssa","name":"ysdnssa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"dnsEndpointType":"AzureDnsZone","keyCreationTime":{"key1":"2022-04-11T06:48:10.4999157Z","key2":"2022-04-11T06:48:10.4999157Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T06:48:10.5155682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T06:48:10.5155682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T06:48:10.4217919Z","primaryEndpoints":{"dfs":"https://ysdnssa.z6.dfs.storage.azure.net/","web":"https://ysdnssa.z6.web.storage.azure.net/","blob":"https://ysdnssa.z6.blob.storage.azure.net/","queue":"https://ysdnssa.z6.queue.storage.azure.net/","table":"https://ysdnssa.z6.table.storage.azure.net/","file":"https://ysdnssa.z6.file.storage.azure.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ysdnssa-secondary.z6.dfs.storage.azure.net/","web":"https://ysdnssa-secondary.z6.web.storage.azure.net/","blob":"https://ysdnssa-secondary.z6.blob.storage.azure.net/","queue":"https://ysdnssa-secondary.z6.queue.storage.azure.net/","table":"https://ysdnssa-secondary.z6.table.storage.azure.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuapeast","name":"zhiyihuangsaeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-04-15T04:15:43.8012808Z","key2":"2022-04-15T04:15:43.8012808Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"isSftpEnabled":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-15T04:15:43.8012808Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-15T04:15:43.8012808Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-15T04:15:43.6918664Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast.table.core.windows.net/","file":"https://zhiyihuangsaeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast-secondary.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest47xrljy3nijo3qd5vzsdilpqy5gmhc6vhrxdt4iznh6uaopskftgp4scam2w7drpot4l/providers/Microsoft.Storage/storageAccounts/clitest23zhehg2ug7pzcmmt","name":"clitest23zhehg2ug7pzcmmt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:52:09.9267277Z","key2":"2021-10-22T23:52:09.9267277Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:52:09.8486094Z","primaryEndpoints":{"dfs":"https://clitest23zhehg2ug7pzcmmt.dfs.core.windows.net/","web":"https://clitest23zhehg2ug7pzcmmt.z2.web.core.windows.net/","blob":"https://clitest23zhehg2ug7pzcmmt.blob.core.windows.net/","queue":"https://clitest23zhehg2ug7pzcmmt.queue.core.windows.net/","table":"https://clitest23zhehg2ug7pzcmmt.table.core.windows.net/","file":"https://clitest23zhehg2ug7pzcmmt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuh33sdgq6xqrgmv2evfqsj7s5elfu75j425duypsq3ykwiqywcsbk7k5hm2dn6dhx3ga/providers/Microsoft.Storage/storageAccounts/clitest2dpu5cejmyr6o6fy4","name":"clitest2dpu5cejmyr6o6fy4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-13T01:03:47.8707679Z","key2":"2021-08-13T01:03:47.8707679Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-13T01:03:47.8082686Z","primaryEndpoints":{"dfs":"https://clitest2dpu5cejmyr6o6fy4.dfs.core.windows.net/","web":"https://clitest2dpu5cejmyr6o6fy4.z2.web.core.windows.net/","blob":"https://clitest2dpu5cejmyr6o6fy4.blob.core.windows.net/","queue":"https://clitest2dpu5cejmyr6o6fy4.queue.core.windows.net/","table":"https://clitest2dpu5cejmyr6o6fy4.table.core.windows.net/","file":"https://clitest2dpu5cejmyr6o6fy4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrl6kiw7ux2j73xj2v7cbet4byjrmn5uenrcnz6qfu5oxpvxtkkik2djcxys4gcpfrgr4/providers/Microsoft.Storage/storageAccounts/clitest2hc2cek5kg4wbcqwa","name":"clitest2hc2cek5kg4wbcqwa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T09:03:47.2900270Z","key2":"2021-06-18T09:03:47.2900270Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T09:03:47.2400033Z","primaryEndpoints":{"dfs":"https://clitest2hc2cek5kg4wbcqwa.dfs.core.windows.net/","web":"https://clitest2hc2cek5kg4wbcqwa.z2.web.core.windows.net/","blob":"https://clitest2hc2cek5kg4wbcqwa.blob.core.windows.net/","queue":"https://clitest2hc2cek5kg4wbcqwa.queue.core.windows.net/","table":"https://clitest2hc2cek5kg4wbcqwa.table.core.windows.net/","file":"https://clitest2hc2cek5kg4wbcqwa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwbyb7elcliee36ry67adfa656263s5nl2c67it2o2pjr3wrh5mwmg3ocygfxjou3vxa/providers/Microsoft.Storage/storageAccounts/clitest2wy5mqj7vog4cn65p","name":"clitest2wy5mqj7vog4cn65p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T16:12:01.9361563Z","key2":"2021-10-22T16:12:01.9361563Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T16:12:01.8580265Z","primaryEndpoints":{"dfs":"https://clitest2wy5mqj7vog4cn65p.dfs.core.windows.net/","web":"https://clitest2wy5mqj7vog4cn65p.z2.web.core.windows.net/","blob":"https://clitest2wy5mqj7vog4cn65p.blob.core.windows.net/","queue":"https://clitest2wy5mqj7vog4cn65p.queue.core.windows.net/","table":"https://clitest2wy5mqj7vog4cn65p.table.core.windows.net/","file":"https://clitest2wy5mqj7vog4cn65p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdaxkcyx2wq5eqkvuu4mtt5xmmxhalqrq75tosueizvrm6gr5eezaaemf3vbcujw23coc/providers/Microsoft.Storage/storageAccounts/clitest34vsfmrzin36syvg2","name":"clitest34vsfmrzin36syvg2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-18T16:11:45.9900777Z","key2":"2022-08-18T16:11:45.9900777Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T16:11:46.3650901Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T16:11:46.3650901Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-18T16:11:45.8494052Z","primaryEndpoints":{"dfs":"https://clitest34vsfmrzin36syvg2.dfs.core.windows.net/","web":"https://clitest34vsfmrzin36syvg2.z2.web.core.windows.net/","blob":"https://clitest34vsfmrzin36syvg2.blob.core.windows.net/","queue":"https://clitest34vsfmrzin36syvg2.queue.core.windows.net/","table":"https://clitest34vsfmrzin36syvg2.table.core.windows.net/","file":"https://clitest34vsfmrzin36syvg2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaars34if2f6awhrzr5vwtr2ocprv723xlflz2zxxqut3f6tqiv2hjy2l5zaj6kutqvbq/providers/Microsoft.Storage/storageAccounts/clitest3r7bin53shduexe6n","name":"clitest3r7bin53shduexe6n","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-02T23:36:46.8626538Z","key2":"2021-12-02T23:36:46.8626538Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:36:46.8782491Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:36:46.8782491Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:36:46.7845261Z","primaryEndpoints":{"dfs":"https://clitest3r7bin53shduexe6n.dfs.core.windows.net/","web":"https://clitest3r7bin53shduexe6n.z2.web.core.windows.net/","blob":"https://clitest3r7bin53shduexe6n.blob.core.windows.net/","queue":"https://clitest3r7bin53shduexe6n.queue.core.windows.net/","table":"https://clitest3r7bin53shduexe6n.table.core.windows.net/","file":"https://clitest3r7bin53shduexe6n.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7cl7lr4i2aqkz7xqie6l7rdinyf3mnvki56xtxp7x5ifryujnxskstygxdnj6pmgpf53/providers/Microsoft.Storage/storageAccounts/clitest4gmaqycfie2b5bukd","name":"clitest4gmaqycfie2b5bukd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-12T00:24:16.8079051Z","key2":"2022-08-12T00:24:16.8079051Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T00:24:17.0735601Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T00:24:17.0735601Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-12T00:24:16.6360511Z","primaryEndpoints":{"dfs":"https://clitest4gmaqycfie2b5bukd.dfs.core.windows.net/","web":"https://clitest4gmaqycfie2b5bukd.z2.web.core.windows.net/","blob":"https://clitest4gmaqycfie2b5bukd.blob.core.windows.net/","queue":"https://clitest4gmaqycfie2b5bukd.queue.core.windows.net/","table":"https://clitest4gmaqycfie2b5bukd.table.core.windows.net/","file":"https://clitest4gmaqycfie2b5bukd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesto72ftnrt7hfn5ltlqnh34e5cjvdyfwj4ny5d7yebu4imldxsoizqp5cazyouoms7ev6j/providers/Microsoft.Storage/storageAccounts/clitest4suuy3hvssqi2u3px","name":"clitest4suuy3hvssqi2u3px","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:23:05.8954115Z","key2":"2021-11-11T22:23:05.8954115Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:23:05.8172663Z","primaryEndpoints":{"dfs":"https://clitest4suuy3hvssqi2u3px.dfs.core.windows.net/","web":"https://clitest4suuy3hvssqi2u3px.z2.web.core.windows.net/","blob":"https://clitest4suuy3hvssqi2u3px.blob.core.windows.net/","queue":"https://clitest4suuy3hvssqi2u3px.queue.core.windows.net/","table":"https://clitest4suuy3hvssqi2u3px.table.core.windows.net/","file":"https://clitest4suuy3hvssqi2u3px.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestra7ouuwajkupsos3f6xg6pbwkbxdaearft7d4e35uecoopx7yzgnelmfuetvhvn4jle6/providers/Microsoft.Storage/storageAccounts/clitest55eq4q3yibnqxk2lk","name":"clitest55eq4q3yibnqxk2lk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-07T23:09:45.8237560Z","key2":"2022-04-07T23:09:45.8237560Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T23:09:45.8237560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T23:09:45.8237560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T23:09:45.7143786Z","primaryEndpoints":{"dfs":"https://clitest55eq4q3yibnqxk2lk.dfs.core.windows.net/","web":"https://clitest55eq4q3yibnqxk2lk.z2.web.core.windows.net/","blob":"https://clitest55eq4q3yibnqxk2lk.blob.core.windows.net/","queue":"https://clitest55eq4q3yibnqxk2lk.queue.core.windows.net/","table":"https://clitest55eq4q3yibnqxk2lk.table.core.windows.net/","file":"https://clitest55eq4q3yibnqxk2lk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaocausrs3iu33bd7z3atmvd3kphc6acu73ifeyvogvdgdktef736y3qrmxkdwrnraj4o/providers/Microsoft.Storage/storageAccounts/clitest5fich3ydeobhd23w2","name":"clitest5fich3ydeobhd23w2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-28T22:27:25.1198767Z","key2":"2022-04-28T22:27:25.1198767Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:27:25.1355320Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:27:25.1355320Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:27:24.9948735Z","primaryEndpoints":{"dfs":"https://clitest5fich3ydeobhd23w2.dfs.core.windows.net/","web":"https://clitest5fich3ydeobhd23w2.z2.web.core.windows.net/","blob":"https://clitest5fich3ydeobhd23w2.blob.core.windows.net/","queue":"https://clitest5fich3ydeobhd23w2.queue.core.windows.net/","table":"https://clitest5fich3ydeobhd23w2.table.core.windows.net/","file":"https://clitest5fich3ydeobhd23w2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttt33kr36k27jzupqzyvmwoyxnhhkzd57gzdkiruhhj7hmr7wi5gh32ofdsa4cm2cbigi/providers/Microsoft.Storage/storageAccounts/clitest5nfub4nyp5igwlueb","name":"clitest5nfub4nyp5igwlueb","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T22:51:11.9414791Z","key2":"2022-02-24T22:51:11.9414791Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:51:11.9414791Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:51:11.9414791Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:51:11.8477455Z","primaryEndpoints":{"dfs":"https://clitest5nfub4nyp5igwlueb.dfs.core.windows.net/","web":"https://clitest5nfub4nyp5igwlueb.z2.web.core.windows.net/","blob":"https://clitest5nfub4nyp5igwlueb.blob.core.windows.net/","queue":"https://clitest5nfub4nyp5igwlueb.queue.core.windows.net/","table":"https://clitest5nfub4nyp5igwlueb.table.core.windows.net/","file":"https://clitest5nfub4nyp5igwlueb.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestiwprlxwortgfmst4zpj5cu3mv2zhzct6sxjwpcp4kq5rblf2kje2rg3blbn5xbc4giqx/providers/Microsoft.Storage/storageAccounts/clitest6snsb5hj7n4kjsjuk","name":"clitest6snsb5hj7n4kjsjuk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-19T02:03:15.5541025Z","key2":"2022-08-19T02:03:15.5541025Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:03:15.7884788Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:03:15.7884788Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-19T02:03:15.4291361Z","primaryEndpoints":{"dfs":"https://clitest6snsb5hj7n4kjsjuk.dfs.core.windows.net/","web":"https://clitest6snsb5hj7n4kjsjuk.z2.web.core.windows.net/","blob":"https://clitest6snsb5hj7n4kjsjuk.blob.core.windows.net/","queue":"https://clitest6snsb5hj7n4kjsjuk.queue.core.windows.net/","table":"https://clitest6snsb5hj7n4kjsjuk.table.core.windows.net/","file":"https://clitest6snsb5hj7n4kjsjuk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestml55iowweb6q7xe2wje5hizd4cfs53eijje47bsf7qy5xru2fegf2adfotoitfvq7b34/providers/Microsoft.Storage/storageAccounts/clitest6tnfqsy73mo2qi6ov","name":"clitest6tnfqsy73mo2qi6ov","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-11T01:42:00.2641426Z","key2":"2022-03-11T01:42:00.2641426Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-11T01:42:00.2797581Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-11T01:42:00.2797581Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-11T01:42:00.1391781Z","primaryEndpoints":{"dfs":"https://clitest6tnfqsy73mo2qi6ov.dfs.core.windows.net/","web":"https://clitest6tnfqsy73mo2qi6ov.z2.web.core.windows.net/","blob":"https://clitest6tnfqsy73mo2qi6ov.blob.core.windows.net/","queue":"https://clitest6tnfqsy73mo2qi6ov.queue.core.windows.net/","table":"https://clitest6tnfqsy73mo2qi6ov.table.core.windows.net/","file":"https://clitest6tnfqsy73mo2qi6ov.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlg5ebdqcv52sflwjoqlwhicwckgl6uznufjdep6cezb52lt73nagcohr2yn5s2pjkddl/providers/Microsoft.Storage/storageAccounts/clitest6vxkrzgloyre3jqjs","name":"clitest6vxkrzgloyre3jqjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-23T03:10:29.4846667Z","key2":"2021-07-23T03:10:29.4846667Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-23T03:10:29.4377939Z","primaryEndpoints":{"dfs":"https://clitest6vxkrzgloyre3jqjs.dfs.core.windows.net/","web":"https://clitest6vxkrzgloyre3jqjs.z2.web.core.windows.net/","blob":"https://clitest6vxkrzgloyre3jqjs.blob.core.windows.net/","queue":"https://clitest6vxkrzgloyre3jqjs.queue.core.windows.net/","table":"https://clitest6vxkrzgloyre3jqjs.table.core.windows.net/","file":"https://clitest6vxkrzgloyre3jqjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmrngm5xnqzkfc35bpac2frhloyp5bhqs3bkzmzzsk4uxhhc5g5bilsacnxbfmtzgwe2j/providers/Microsoft.Storage/storageAccounts/clitest7bnb7msut4cjgzpbr","name":"clitest7bnb7msut4cjgzpbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:46:56.7491572Z","key2":"2021-10-29T22:46:56.7491572Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:46:56.6866372Z","primaryEndpoints":{"dfs":"https://clitest7bnb7msut4cjgzpbr.dfs.core.windows.net/","web":"https://clitest7bnb7msut4cjgzpbr.z2.web.core.windows.net/","blob":"https://clitest7bnb7msut4cjgzpbr.blob.core.windows.net/","queue":"https://clitest7bnb7msut4cjgzpbr.queue.core.windows.net/","table":"https://clitest7bnb7msut4cjgzpbr.table.core.windows.net/","file":"https://clitest7bnb7msut4cjgzpbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5pxpr64tqxefi4kgvuh5z3cmr3srlor6oj3om2ehpxbkm7orzvfbgqagtooojquptagq/providers/Microsoft.Storage/storageAccounts/clitesta23vfo64epdjcu3ot","name":"clitesta23vfo64epdjcu3ot","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T05:20:46.8438078Z","key2":"2021-12-09T05:20:46.8438078Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:20:46.8594509Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:20:46.8594509Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:20:46.7656986Z","primaryEndpoints":{"dfs":"https://clitesta23vfo64epdjcu3ot.dfs.core.windows.net/","web":"https://clitesta23vfo64epdjcu3ot.z2.web.core.windows.net/","blob":"https://clitesta23vfo64epdjcu3ot.blob.core.windows.net/","queue":"https://clitesta23vfo64epdjcu3ot.queue.core.windows.net/","table":"https://clitesta23vfo64epdjcu3ot.table.core.windows.net/","file":"https://clitesta23vfo64epdjcu3ot.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkcuipcz3pt2cibpgeifzrgfyzqdvsmwkw55s6of5em2ayvaozqx7seepqe3qotzz66dq/providers/Microsoft.Storage/storageAccounts/clitestapjrxhw5tbshhpa5r","name":"clitestapjrxhw5tbshhpa5r","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-19T23:04:56.1808242Z","key2":"2022-05-19T23:04:56.1808242Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-19T23:04:56.1808242Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-19T23:04:56.1808242Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-19T23:04:56.0558227Z","primaryEndpoints":{"dfs":"https://clitestapjrxhw5tbshhpa5r.dfs.core.windows.net/","web":"https://clitestapjrxhw5tbshhpa5r.z2.web.core.windows.net/","blob":"https://clitestapjrxhw5tbshhpa5r.blob.core.windows.net/","queue":"https://clitestapjrxhw5tbshhpa5r.queue.core.windows.net/","table":"https://clitestapjrxhw5tbshhpa5r.table.core.windows.net/","file":"https://clitestapjrxhw5tbshhpa5r.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestpyyrggpop6t2eifpvaicw2npacscf5smrsegi7gjeb6arklcmy2poh32b757t4k7eyxm/providers/Microsoft.Storage/storageAccounts/clitestb5yxhpa3shv5y6e6y","name":"clitestb5yxhpa3shv5y6e6y","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-15T14:36:56.2144260Z","key2":"2022-06-15T14:36:56.2144260Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-15T14:36:56.2144260Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-15T14:36:56.2144260Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-15T14:36:56.0894550Z","primaryEndpoints":{"dfs":"https://clitestb5yxhpa3shv5y6e6y.dfs.core.windows.net/","web":"https://clitestb5yxhpa3shv5y6e6y.z2.web.core.windows.net/","blob":"https://clitestb5yxhpa3shv5y6e6y.blob.core.windows.net/","queue":"https://clitestb5yxhpa3shv5y6e6y.queue.core.windows.net/","table":"https://clitestb5yxhpa3shv5y6e6y.table.core.windows.net/","file":"https://clitestb5yxhpa3shv5y6e6y.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcioaekrdcac3gfopptjaajefdj423bny2ijiohhlstguyjbz7ey5yopzt3glfk3wu22c/providers/Microsoft.Storage/storageAccounts/clitestbajwfvucqjul4yvoq","name":"clitestbajwfvucqjul4yvoq","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T05:43:59.4080912Z","key2":"2022-03-16T05:43:59.4080912Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:43:59.4237194Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:43:59.4237194Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:43:59.3143640Z","primaryEndpoints":{"dfs":"https://clitestbajwfvucqjul4yvoq.dfs.core.windows.net/","web":"https://clitestbajwfvucqjul4yvoq.z2.web.core.windows.net/","blob":"https://clitestbajwfvucqjul4yvoq.blob.core.windows.net/","queue":"https://clitestbajwfvucqjul4yvoq.queue.core.windows.net/","table":"https://clitestbajwfvucqjul4yvoq.table.core.windows.net/","file":"https://clitestbajwfvucqjul4yvoq.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestef6eejui2ry622mc6zf2nvoemmdy7t3minir53pkvaii6ftsyufmbwzcwdomdg4ybrb6/providers/Microsoft.Storage/storageAccounts/clitestcnrkbgnvxvtoswnwk","name":"clitestcnrkbgnvxvtoswnwk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T03:54:10.8298714Z","key2":"2022-03-18T03:54:10.8298714Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:54:10.8298714Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:54:10.8298714Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:54:10.7204974Z","primaryEndpoints":{"dfs":"https://clitestcnrkbgnvxvtoswnwk.dfs.core.windows.net/","web":"https://clitestcnrkbgnvxvtoswnwk.z2.web.core.windows.net/","blob":"https://clitestcnrkbgnvxvtoswnwk.blob.core.windows.net/","queue":"https://clitestcnrkbgnvxvtoswnwk.queue.core.windows.net/","table":"https://clitestcnrkbgnvxvtoswnwk.table.core.windows.net/","file":"https://clitestcnrkbgnvxvtoswnwk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfwybg5aqnlewkvelizobsdyy6zocpnnltod4k5d6l62rlz3wfkmdpz7fcw3xbvo45lad/providers/Microsoft.Storage/storageAccounts/clitestdk7kvmf5lss5lltse","name":"clitestdk7kvmf5lss5lltse","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T03:24:22.5335528Z","key2":"2021-06-21T03:24:22.5335528Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T03:24:22.4635745Z","primaryEndpoints":{"dfs":"https://clitestdk7kvmf5lss5lltse.dfs.core.windows.net/","web":"https://clitestdk7kvmf5lss5lltse.z2.web.core.windows.net/","blob":"https://clitestdk7kvmf5lss5lltse.blob.core.windows.net/","queue":"https://clitestdk7kvmf5lss5lltse.queue.core.windows.net/","table":"https://clitestdk7kvmf5lss5lltse.table.core.windows.net/","file":"https://clitestdk7kvmf5lss5lltse.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestem5kabxlxhdb6zfxdhtqgoaa4f5fgadqcvzwbxjv4i3tpl7cazs3yx46oidsxdy77cy2/providers/Microsoft.Storage/storageAccounts/clitestdu2ev4t4zoit7bvqi","name":"clitestdu2ev4t4zoit7bvqi","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-23T03:41:00.1525213Z","key2":"2022-02-23T03:41:00.1525213Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:41:00.1682236Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:41:00.1682236Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:41:00.0743945Z","primaryEndpoints":{"dfs":"https://clitestdu2ev4t4zoit7bvqi.dfs.core.windows.net/","web":"https://clitestdu2ev4t4zoit7bvqi.z2.web.core.windows.net/","blob":"https://clitestdu2ev4t4zoit7bvqi.blob.core.windows.net/","queue":"https://clitestdu2ev4t4zoit7bvqi.queue.core.windows.net/","table":"https://clitestdu2ev4t4zoit7bvqi.table.core.windows.net/","file":"https://clitestdu2ev4t4zoit7bvqi.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnxak6zvgtto64ihvpqeb6k6axceeskjnygs6kmirhy7t3ea2fixecjhr7i4qckpqpso/providers/Microsoft.Storage/storageAccounts/clitesteabyzaucegm7asmdy","name":"clitesteabyzaucegm7asmdy","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T22:56:30.5353621Z","key2":"2022-03-31T22:56:30.5353621Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:56:30.5510033Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:56:30.5510033Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:56:30.4416480Z","primaryEndpoints":{"dfs":"https://clitesteabyzaucegm7asmdy.dfs.core.windows.net/","web":"https://clitesteabyzaucegm7asmdy.z2.web.core.windows.net/","blob":"https://clitesteabyzaucegm7asmdy.blob.core.windows.net/","queue":"https://clitesteabyzaucegm7asmdy.queue.core.windows.net/","table":"https://clitesteabyzaucegm7asmdy.table.core.windows.net/","file":"https://clitesteabyzaucegm7asmdy.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestitvqgal52p4psfil24fzt3bed3ggoi6homqb65uwqtwqytvatpymshlg6xdxbb2y2xun/providers/Microsoft.Storage/storageAccounts/clitesteg772nlczvaz5acxj","name":"clitesteg772nlczvaz5acxj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-12T23:25:35.3422645Z","key2":"2022-05-12T23:25:35.3422645Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T23:25:35.3422645Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T23:25:35.3422645Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T23:25:35.2172397Z","primaryEndpoints":{"dfs":"https://clitesteg772nlczvaz5acxj.dfs.core.windows.net/","web":"https://clitesteg772nlczvaz5acxj.z2.web.core.windows.net/","blob":"https://clitesteg772nlczvaz5acxj.blob.core.windows.net/","queue":"https://clitesteg772nlczvaz5acxj.queue.core.windows.net/","table":"https://clitesteg772nlczvaz5acxj.table.core.windows.net/","file":"https://clitesteg772nlczvaz5acxj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2flspylari7vfylgymexf5iaunl34uxkauktagueyymzxgzsim2w2vvkkloc4jehwbnz/providers/Microsoft.Storage/storageAccounts/clitestemr7dqkgd62ulieu3","name":"clitestemr7dqkgd62ulieu3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-28T23:38:04.5243204Z","key2":"2022-07-28T23:38:04.5243204Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:38:04.7742915Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:38:04.7742915Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-28T23:38:04.3993080Z","primaryEndpoints":{"dfs":"https://clitestemr7dqkgd62ulieu3.dfs.core.windows.net/","web":"https://clitestemr7dqkgd62ulieu3.z2.web.core.windows.net/","blob":"https://clitestemr7dqkgd62ulieu3.blob.core.windows.net/","queue":"https://clitestemr7dqkgd62ulieu3.queue.core.windows.net/","table":"https://clitestemr7dqkgd62ulieu3.table.core.windows.net/","file":"https://clitestemr7dqkgd62ulieu3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrsohgzweguh5sbmc2pqtpljjtbr4rlmjxyb4o7tw4t7hvlyykdycmrbgf6qs6xqkj62m/providers/Microsoft.Storage/storageAccounts/clitestf7mh2cn2ofizivexr","name":"clitestf7mh2cn2ofizivexr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-18T08:29:57.4730340Z","key2":"2022-08-18T08:29:57.4730340Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T08:29:57.8168026Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T08:29:57.8168026Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-18T08:29:57.3324285Z","primaryEndpoints":{"dfs":"https://clitestf7mh2cn2ofizivexr.dfs.core.windows.net/","web":"https://clitestf7mh2cn2ofizivexr.z2.web.core.windows.net/","blob":"https://clitestf7mh2cn2ofizivexr.blob.core.windows.net/","queue":"https://clitestf7mh2cn2ofizivexr.queue.core.windows.net/","table":"https://clitestf7mh2cn2ofizivexr.table.core.windows.net/","file":"https://clitestf7mh2cn2ofizivexr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaplqr3c25xdddlwukirxixwo5byw5rkls3kr5fo66qoamflxrkjhxpt27enj7wmk2yuj/providers/Microsoft.Storage/storageAccounts/clitestfbytzu7syzfrmr7kf","name":"clitestfbytzu7syzfrmr7kf","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:22:45.3374456Z","key2":"2021-11-04T22:22:45.3374456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:22:45.2593440Z","primaryEndpoints":{"dfs":"https://clitestfbytzu7syzfrmr7kf.dfs.core.windows.net/","web":"https://clitestfbytzu7syzfrmr7kf.z2.web.core.windows.net/","blob":"https://clitestfbytzu7syzfrmr7kf.blob.core.windows.net/","queue":"https://clitestfbytzu7syzfrmr7kf.queue.core.windows.net/","table":"https://clitestfbytzu7syzfrmr7kf.table.core.windows.net/","file":"https://clitestfbytzu7syzfrmr7kf.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwhxadwesuwxcw3oci5pchhqwqwmcqiriqymhru2exjji6ax7focfxa2wpmd3xbxtaq3t/providers/Microsoft.Storage/storageAccounts/clitestftms76siovw6xle6l","name":"clitestftms76siovw6xle6l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-24T23:55:00.0445344Z","key2":"2022-03-24T23:55:00.0445344Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:55:00.0601285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:55:00.0601285Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:54:59.9351597Z","primaryEndpoints":{"dfs":"https://clitestftms76siovw6xle6l.dfs.core.windows.net/","web":"https://clitestftms76siovw6xle6l.z2.web.core.windows.net/","blob":"https://clitestftms76siovw6xle6l.blob.core.windows.net/","queue":"https://clitestftms76siovw6xle6l.queue.core.windows.net/","table":"https://clitestftms76siovw6xle6l.table.core.windows.net/","file":"https://clitestftms76siovw6xle6l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7yubzobtgqqoviarcco22mlfkafuvu32s3o4dfts54zzanzbsl5ip7rzaxzgigg7ijta/providers/Microsoft.Storage/storageAccounts/clitestg6yfm7cgxhb4ewrdd","name":"clitestg6yfm7cgxhb4ewrdd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-26T08:45:50.1646651Z","key2":"2022-04-26T08:45:50.1646651Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:45:50.1646651Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:45:50.1646651Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:45:50.0553084Z","primaryEndpoints":{"dfs":"https://clitestg6yfm7cgxhb4ewrdd.dfs.core.windows.net/","web":"https://clitestg6yfm7cgxhb4ewrdd.z2.web.core.windows.net/","blob":"https://clitestg6yfm7cgxhb4ewrdd.blob.core.windows.net/","queue":"https://clitestg6yfm7cgxhb4ewrdd.queue.core.windows.net/","table":"https://clitestg6yfm7cgxhb4ewrdd.table.core.windows.net/","file":"https://clitestg6yfm7cgxhb4ewrdd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmf7nhc2b7xj4ixozvacoyhu5txvmpbvnechdktpac6dpdx3ckv6jt6vebrkl24rzui4n/providers/Microsoft.Storage/storageAccounts/clitestgqwqxremngb73a7d4","name":"clitestgqwqxremngb73a7d4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-05T23:00:55.1151173Z","key2":"2022-05-05T23:00:55.1151173Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:00:55.1151173Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:00:55.1151173Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:00:54.9900949Z","primaryEndpoints":{"dfs":"https://clitestgqwqxremngb73a7d4.dfs.core.windows.net/","web":"https://clitestgqwqxremngb73a7d4.z2.web.core.windows.net/","blob":"https://clitestgqwqxremngb73a7d4.blob.core.windows.net/","queue":"https://clitestgqwqxremngb73a7d4.queue.core.windows.net/","table":"https://clitestgqwqxremngb73a7d4.table.core.windows.net/","file":"https://clitestgqwqxremngb73a7d4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkmydtxqqwqds5d67vdbrwtk32xdryjsxq6fp74nse75bdhdla7mh47b6myevefnapwyx/providers/Microsoft.Storage/storageAccounts/clitestgqwsejh46zuqlc5pm","name":"clitestgqwsejh46zuqlc5pm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-06T05:27:12.7993484Z","key2":"2021-08-06T05:27:12.7993484Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-06T05:27:12.7368799Z","primaryEndpoints":{"dfs":"https://clitestgqwsejh46zuqlc5pm.dfs.core.windows.net/","web":"https://clitestgqwsejh46zuqlc5pm.z2.web.core.windows.net/","blob":"https://clitestgqwsejh46zuqlc5pm.blob.core.windows.net/","queue":"https://clitestgqwsejh46zuqlc5pm.queue.core.windows.net/","table":"https://clitestgqwsejh46zuqlc5pm.table.core.windows.net/","file":"https://clitestgqwsejh46zuqlc5pm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestumpqlcfhjrqokmcud3ilwtvxyfowdjypjqgyymcf4whtgbq2gzzq6f2rqs66ll4mjgzm/providers/Microsoft.Storage/storageAccounts/clitestgu6cs7lus5a567u57","name":"clitestgu6cs7lus5a567u57","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T09:14:06.5832387Z","key2":"2022-03-16T09:14:06.5832387Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:14:06.5832387Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:14:06.5832387Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:14:06.4894945Z","primaryEndpoints":{"dfs":"https://clitestgu6cs7lus5a567u57.dfs.core.windows.net/","web":"https://clitestgu6cs7lus5a567u57.z2.web.core.windows.net/","blob":"https://clitestgu6cs7lus5a567u57.blob.core.windows.net/","queue":"https://clitestgu6cs7lus5a567u57.queue.core.windows.net/","table":"https://clitestgu6cs7lus5a567u57.table.core.windows.net/","file":"https://clitestgu6cs7lus5a567u57.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestndsnnd5ibnsjkzl7w5mbaujjmelonc2xjmyrd325iiwno27u6sxcxkewjeox2x2wr633/providers/Microsoft.Storage/storageAccounts/clitestgz6nb4it72a36mdpt","name":"clitestgz6nb4it72a36mdpt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-20T02:02:00.4577106Z","key2":"2021-08-20T02:02:00.4577106Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-20T02:02:00.3952449Z","primaryEndpoints":{"dfs":"https://clitestgz6nb4it72a36mdpt.dfs.core.windows.net/","web":"https://clitestgz6nb4it72a36mdpt.z2.web.core.windows.net/","blob":"https://clitestgz6nb4it72a36mdpt.blob.core.windows.net/","queue":"https://clitestgz6nb4it72a36mdpt.queue.core.windows.net/","table":"https://clitestgz6nb4it72a36mdpt.table.core.windows.net/","file":"https://clitestgz6nb4it72a36mdpt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrotlxgumszwk5pic6m6a3i32kt75g2qc43u3fpyn5ny7ozajmn73cprurofgq53idavu/providers/Microsoft.Storage/storageAccounts/clitesthvi6za73pdnet4pdh","name":"clitesthvi6za73pdnet4pdh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-15T00:41:55.6182738Z","key2":"2022-07-15T00:41:55.6182738Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-15T00:41:56.0089249Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-15T00:41:56.0089249Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-15T00:41:55.4620198Z","primaryEndpoints":{"dfs":"https://clitesthvi6za73pdnet4pdh.dfs.core.windows.net/","web":"https://clitesthvi6za73pdnet4pdh.z2.web.core.windows.net/","blob":"https://clitesthvi6za73pdnet4pdh.blob.core.windows.net/","queue":"https://clitesthvi6za73pdnet4pdh.queue.core.windows.net/","table":"https://clitesthvi6za73pdnet4pdh.table.core.windows.net/","file":"https://clitesthvi6za73pdnet4pdh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestn4htsp3pg7ss7lmzhcljejgtykexcvsnpgv6agwecgmuu6ckzau64qsjr7huw7yjt7xp/providers/Microsoft.Storage/storageAccounts/clitestixj25nsrxwuhditis","name":"clitestixj25nsrxwuhditis","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-25T00:34:17.1563369Z","key2":"2022-02-25T00:34:17.1563369Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:34:17.1719415Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:34:17.1719415Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:34:17.0626105Z","primaryEndpoints":{"dfs":"https://clitestixj25nsrxwuhditis.dfs.core.windows.net/","web":"https://clitestixj25nsrxwuhditis.z2.web.core.windows.net/","blob":"https://clitestixj25nsrxwuhditis.blob.core.windows.net/","queue":"https://clitestixj25nsrxwuhditis.queue.core.windows.net/","table":"https://clitestixj25nsrxwuhditis.table.core.windows.net/","file":"https://clitestixj25nsrxwuhditis.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestgq2rbt5t5uv3qy2hasu5gvqrlzozx6vzerszimnby4ybqtp5fmecaxj3to5iemnt7zxi/providers/Microsoft.Storage/storageAccounts/clitestl3yjfwd43tngr3lc3","name":"clitestl3yjfwd43tngr3lc3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-14T23:27:20.0298879Z","key2":"2022-04-14T23:27:20.0298879Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0298879Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0298879Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:27:19.9204650Z","primaryEndpoints":{"dfs":"https://clitestl3yjfwd43tngr3lc3.dfs.core.windows.net/","web":"https://clitestl3yjfwd43tngr3lc3.z2.web.core.windows.net/","blob":"https://clitestl3yjfwd43tngr3lc3.blob.core.windows.net/","queue":"https://clitestl3yjfwd43tngr3lc3.queue.core.windows.net/","table":"https://clitestl3yjfwd43tngr3lc3.table.core.windows.net/","file":"https://clitestl3yjfwd43tngr3lc3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestepy64dgrtly4yjibvcoccnejqyhiq4x7o6p7agna5wsmlycai7yxgi3cq3r2y6obgwfd/providers/Microsoft.Storage/storageAccounts/clitestld7574jebhj62dtvt","name":"clitestld7574jebhj62dtvt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-07T00:25:44.6498481Z","key2":"2022-01-07T00:25:44.6498481Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:25:44.6498481Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:25:44.6498481Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:25:44.5717202Z","primaryEndpoints":{"dfs":"https://clitestld7574jebhj62dtvt.dfs.core.windows.net/","web":"https://clitestld7574jebhj62dtvt.z2.web.core.windows.net/","blob":"https://clitestld7574jebhj62dtvt.blob.core.windows.net/","queue":"https://clitestld7574jebhj62dtvt.queue.core.windows.net/","table":"https://clitestld7574jebhj62dtvt.table.core.windows.net/","file":"https://clitestld7574jebhj62dtvt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestp5tcxahtvl6aa72hi7stjq5jf52e6pomwtrblva65dei2ftuqpruyn4w4twv7rqj3idw/providers/Microsoft.Storage/storageAccounts/clitestljawlm4h73ws6xqet","name":"clitestljawlm4h73ws6xqet","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-30T22:47:49.0810388Z","key2":"2021-12-30T22:47:49.0810388Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:47:49.0966383Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:47:49.0966383Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:47:48.9404345Z","primaryEndpoints":{"dfs":"https://clitestljawlm4h73ws6xqet.dfs.core.windows.net/","web":"https://clitestljawlm4h73ws6xqet.z2.web.core.windows.net/","blob":"https://clitestljawlm4h73ws6xqet.blob.core.windows.net/","queue":"https://clitestljawlm4h73ws6xqet.queue.core.windows.net/","table":"https://clitestljawlm4h73ws6xqet.table.core.windows.net/","file":"https://clitestljawlm4h73ws6xqet.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsc4q5ncei7qimmmmtqmedt4valwfif74bbu7mdfwqimzfzfkopwgrmua7p4rcsga53m4/providers/Microsoft.Storage/storageAccounts/clitestlssboc5vg5mdivn4h","name":"clitestlssboc5vg5mdivn4h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T08:34:36.9887468Z","key2":"2021-06-18T08:34:36.9887468Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T08:34:36.9237913Z","primaryEndpoints":{"dfs":"https://clitestlssboc5vg5mdivn4h.dfs.core.windows.net/","web":"https://clitestlssboc5vg5mdivn4h.z2.web.core.windows.net/","blob":"https://clitestlssboc5vg5mdivn4h.blob.core.windows.net/","queue":"https://clitestlssboc5vg5mdivn4h.queue.core.windows.net/","table":"https://clitestlssboc5vg5mdivn4h.table.core.windows.net/","file":"https://clitestlssboc5vg5mdivn4h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5yatgcl7dfear3v3e5d5hrqbpo5bdotmwoq7auiuykmzx74is6rzhkib56ajwf5ghxrk/providers/Microsoft.Storage/storageAccounts/clitestlzfflnot5wnc3y4j3","name":"clitestlzfflnot5wnc3y4j3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:21:02.0736425Z","key2":"2021-09-28T02:21:02.0736425Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:21:02.0267640Z","primaryEndpoints":{"dfs":"https://clitestlzfflnot5wnc3y4j3.dfs.core.windows.net/","web":"https://clitestlzfflnot5wnc3y4j3.z2.web.core.windows.net/","blob":"https://clitestlzfflnot5wnc3y4j3.blob.core.windows.net/","queue":"https://clitestlzfflnot5wnc3y4j3.queue.core.windows.net/","table":"https://clitestlzfflnot5wnc3y4j3.table.core.windows.net/","file":"https://clitestlzfflnot5wnc3y4j3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4uclirqb3ls66vfea6dckw3hj5kaextm324ugnbkquibcn2rck7b7gmrmql55g3zknff/providers/Microsoft.Storage/storageAccounts/clitestm4jcw64slbkeds52p","name":"clitestm4jcw64slbkeds52p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-21T23:03:20.8663156Z","key2":"2022-04-21T23:03:20.8663156Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:03:20.8663156Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:03:20.8663156Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:03:20.7413381Z","primaryEndpoints":{"dfs":"https://clitestm4jcw64slbkeds52p.dfs.core.windows.net/","web":"https://clitestm4jcw64slbkeds52p.z2.web.core.windows.net/","blob":"https://clitestm4jcw64slbkeds52p.blob.core.windows.net/","queue":"https://clitestm4jcw64slbkeds52p.queue.core.windows.net/","table":"https://clitestm4jcw64slbkeds52p.table.core.windows.net/","file":"https://clitestm4jcw64slbkeds52p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest6q54l25xpde6kfnauzzkpfgepjiio73onycgbulqkawkv5wcigbnnhzv7uao7abedoer/providers/Microsoft.Storage/storageAccounts/clitestm5bj2p5ajecznrca6","name":"clitestm5bj2p5ajecznrca6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T01:35:33.3327243Z","key2":"2022-03-18T01:35:33.3327243Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:35:33.3503663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:35:33.3503663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:35:33.2545964Z","primaryEndpoints":{"dfs":"https://clitestm5bj2p5ajecznrca6.dfs.core.windows.net/","web":"https://clitestm5bj2p5ajecznrca6.z2.web.core.windows.net/","blob":"https://clitestm5bj2p5ajecznrca6.blob.core.windows.net/","queue":"https://clitestm5bj2p5ajecznrca6.queue.core.windows.net/","table":"https://clitestm5bj2p5ajecznrca6.table.core.windows.net/","file":"https://clitestm5bj2p5ajecznrca6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestjkw7fpanpscpileddbqrrrkjrtb5xi47wmvttkiqwsqcuo3ldvzszwso3x4c5apy6m5o/providers/Microsoft.Storage/storageAccounts/clitestm6u3xawj3qsydpfam","name":"clitestm6u3xawj3qsydpfam","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T07:13:03.1496586Z","key2":"2021-09-07T07:13:03.1496586Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T07:13:03.0714932Z","primaryEndpoints":{"dfs":"https://clitestm6u3xawj3qsydpfam.dfs.core.windows.net/","web":"https://clitestm6u3xawj3qsydpfam.z2.web.core.windows.net/","blob":"https://clitestm6u3xawj3qsydpfam.blob.core.windows.net/","queue":"https://clitestm6u3xawj3qsydpfam.queue.core.windows.net/","table":"https://clitestm6u3xawj3qsydpfam.table.core.windows.net/","file":"https://clitestm6u3xawj3qsydpfam.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlasgl5zx6ikvcbociiykbocsytte2lohfxvpwhwimcc3vbrjjyw6bfbdr2vnimlyhqqi/providers/Microsoft.Storage/storageAccounts/clitestmmrdf65b6iyccd46o","name":"clitestmmrdf65b6iyccd46o","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T23:31:23.3308560Z","key2":"2021-12-09T23:31:23.3308560Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:31:23.3308560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:31:23.3308560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:31:23.2526784Z","primaryEndpoints":{"dfs":"https://clitestmmrdf65b6iyccd46o.dfs.core.windows.net/","web":"https://clitestmmrdf65b6iyccd46o.z2.web.core.windows.net/","blob":"https://clitestmmrdf65b6iyccd46o.blob.core.windows.net/","queue":"https://clitestmmrdf65b6iyccd46o.queue.core.windows.net/","table":"https://clitestmmrdf65b6iyccd46o.table.core.windows.net/","file":"https://clitestmmrdf65b6iyccd46o.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvilxen5dzbyerye5umdunqblbkglgcffizxusyzmgifnuy5xzu67t3fokkh6osaqqyyj/providers/Microsoft.Storage/storageAccounts/clitestoueypfkdm2ub7n246","name":"clitestoueypfkdm2ub7n246","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T07:57:05.8690860Z","key2":"2022-03-17T07:57:05.8690860Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:57:05.8847136Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:57:05.8847136Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:57:05.7597303Z","primaryEndpoints":{"dfs":"https://clitestoueypfkdm2ub7n246.dfs.core.windows.net/","web":"https://clitestoueypfkdm2ub7n246.z2.web.core.windows.net/","blob":"https://clitestoueypfkdm2ub7n246.blob.core.windows.net/","queue":"https://clitestoueypfkdm2ub7n246.queue.core.windows.net/","table":"https://clitestoueypfkdm2ub7n246.table.core.windows.net/","file":"https://clitestoueypfkdm2ub7n246.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcnbbt3dvwtzd7t2de25yso3n2gs6i7mqnfloe5myghvfjc5hddzlwkxbotwgt5utz23p/providers/Microsoft.Storage/storageAccounts/clitestoyv4k5wezlz5652m7","name":"clitestoyv4k5wezlz5652m7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-17T02:53:25.7560574Z","key2":"2022-06-17T02:53:25.7560574Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-17T02:53:25.7716595Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-17T02:53:25.7716595Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-17T02:53:25.6154142Z","primaryEndpoints":{"dfs":"https://clitestoyv4k5wezlz5652m7.dfs.core.windows.net/","web":"https://clitestoyv4k5wezlz5652m7.z2.web.core.windows.net/","blob":"https://clitestoyv4k5wezlz5652m7.blob.core.windows.net/","queue":"https://clitestoyv4k5wezlz5652m7.queue.core.windows.net/","table":"https://clitestoyv4k5wezlz5652m7.table.core.windows.net/","file":"https://clitestoyv4k5wezlz5652m7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsj327gmwrgwnkd4b6njrwwecha4ubjtppnfsju33z344or7vt5wd57l7tszqdaejv6qh/providers/Microsoft.Storage/storageAccounts/clitestq3r2jm4nkkd3n5mnu","name":"clitestq3r2jm4nkkd3n5mnu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-05T00:18:31.4846003Z","key2":"2022-08-05T00:18:31.4846003Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-05T00:18:31.9377362Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-05T00:18:31.9377362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-05T00:18:31.3595999Z","primaryEndpoints":{"dfs":"https://clitestq3r2jm4nkkd3n5mnu.dfs.core.windows.net/","web":"https://clitestq3r2jm4nkkd3n5mnu.z2.web.core.windows.net/","blob":"https://clitestq3r2jm4nkkd3n5mnu.blob.core.windows.net/","queue":"https://clitestq3r2jm4nkkd3n5mnu.queue.core.windows.net/","table":"https://clitestq3r2jm4nkkd3n5mnu.table.core.windows.net/","file":"https://clitestq3r2jm4nkkd3n5mnu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvabzmquoslc3mtf5h3qd7dglwx45me4yxyefaw4ktsf7fbc3bx2tl75tdn5eqbgd3atx/providers/Microsoft.Storage/storageAccounts/clitestq7ur4vdqkjvy2rdgj","name":"clitestq7ur4vdqkjvy2rdgj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:27:14.4071914Z","key2":"2021-09-28T02:27:14.4071914Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:27:14.3446978Z","primaryEndpoints":{"dfs":"https://clitestq7ur4vdqkjvy2rdgj.dfs.core.windows.net/","web":"https://clitestq7ur4vdqkjvy2rdgj.z2.web.core.windows.net/","blob":"https://clitestq7ur4vdqkjvy2rdgj.blob.core.windows.net/","queue":"https://clitestq7ur4vdqkjvy2rdgj.queue.core.windows.net/","table":"https://clitestq7ur4vdqkjvy2rdgj.table.core.windows.net/","file":"https://clitestq7ur4vdqkjvy2rdgj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestugd6g2jxyo5mu6uxhc4zea4ygi2iuubouzxmdyuz6srnvrbwlidbvuu4qdieuwg4xlsr/providers/Microsoft.Storage/storageAccounts/clitestqorauf75d5yqkhdhc","name":"clitestqorauf75d5yqkhdhc","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-03T02:52:09.6342752Z","key2":"2021-09-03T02:52:09.6342752Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T02:52:09.5561638Z","primaryEndpoints":{"dfs":"https://clitestqorauf75d5yqkhdhc.dfs.core.windows.net/","web":"https://clitestqorauf75d5yqkhdhc.z2.web.core.windows.net/","blob":"https://clitestqorauf75d5yqkhdhc.blob.core.windows.net/","queue":"https://clitestqorauf75d5yqkhdhc.queue.core.windows.net/","table":"https://clitestqorauf75d5yqkhdhc.table.core.windows.net/","file":"https://clitestqorauf75d5yqkhdhc.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestixw7rtta5a356httmdosgg7qubvcaouftsvknfhvqqhqwftebu7jy5r27pprk7ctdnwp/providers/Microsoft.Storage/storageAccounts/clitestri5mezafhuqqzpn5f","name":"clitestri5mezafhuqqzpn5f","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T09:35:27.4649472Z","key2":"2022-03-16T09:35:27.4649472Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:35:27.4649472Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:35:27.4649472Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:35:27.3868241Z","primaryEndpoints":{"dfs":"https://clitestri5mezafhuqqzpn5f.dfs.core.windows.net/","web":"https://clitestri5mezafhuqqzpn5f.z2.web.core.windows.net/","blob":"https://clitestri5mezafhuqqzpn5f.blob.core.windows.net/","queue":"https://clitestri5mezafhuqqzpn5f.queue.core.windows.net/","table":"https://clitestri5mezafhuqqzpn5f.table.core.windows.net/","file":"https://clitestri5mezafhuqqzpn5f.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestevsaicktnjgl5cxsdgqxunvrpbz3b5kiwem5aupvcn666xqibcydgkcmqom7wfe3dapu/providers/Microsoft.Storage/storageAccounts/clitestrjmnbaleto4rtnerx","name":"clitestrjmnbaleto4rtnerx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T14:10:11.3863047Z","key2":"2022-03-17T14:10:11.3863047Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T14:10:11.3863047Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T14:10:11.3863047Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T14:10:11.2769522Z","primaryEndpoints":{"dfs":"https://clitestrjmnbaleto4rtnerx.dfs.core.windows.net/","web":"https://clitestrjmnbaleto4rtnerx.z2.web.core.windows.net/","blob":"https://clitestrjmnbaleto4rtnerx.blob.core.windows.net/","queue":"https://clitestrjmnbaleto4rtnerx.queue.core.windows.net/","table":"https://clitestrjmnbaleto4rtnerx.table.core.windows.net/","file":"https://clitestrjmnbaleto4rtnerx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4r6levc5rrhybrqdpa7ji574v5syh473mkechmyeuub52k5ppe6jpwdn4ummj5zz4dls/providers/Microsoft.Storage/storageAccounts/clitestrloxav4ddvzysochv","name":"clitestrloxav4ddvzysochv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-28T17:02:12.4537885Z","key2":"2022-02-28T17:02:12.4537885Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T17:02:12.4693878Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T17:02:12.4693878Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T17:02:12.3756824Z","primaryEndpoints":{"dfs":"https://clitestrloxav4ddvzysochv.dfs.core.windows.net/","web":"https://clitestrloxav4ddvzysochv.z2.web.core.windows.net/","blob":"https://clitestrloxav4ddvzysochv.blob.core.windows.net/","queue":"https://clitestrloxav4ddvzysochv.queue.core.windows.net/","table":"https://clitestrloxav4ddvzysochv.table.core.windows.net/","file":"https://clitestrloxav4ddvzysochv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestzbuh7m7bllna7xosjhxr5ppfs6tnukxctfm4ydkzmzvyt7tf2ru3yjmthwy6mqqp62yy/providers/Microsoft.Storage/storageAccounts/clitestrpsk56xwloumq6ngj","name":"clitestrpsk56xwloumq6ngj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T05:52:26.0729783Z","key2":"2021-06-21T05:52:26.0729783Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T05:52:26.0129686Z","primaryEndpoints":{"dfs":"https://clitestrpsk56xwloumq6ngj.dfs.core.windows.net/","web":"https://clitestrpsk56xwloumq6ngj.z2.web.core.windows.net/","blob":"https://clitestrpsk56xwloumq6ngj.blob.core.windows.net/","queue":"https://clitestrpsk56xwloumq6ngj.queue.core.windows.net/","table":"https://clitestrpsk56xwloumq6ngj.table.core.windows.net/","file":"https://clitestrpsk56xwloumq6ngj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvjv33kuh5emihpapvtmm2rvht3tzrvzj3l7pygfh2yfwrlsqrgth2qfth6eylgrcnc2v/providers/Microsoft.Storage/storageAccounts/clitestrynzkqk7indncjb6c","name":"clitestrynzkqk7indncjb6c","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-03T23:37:22.5048830Z","key2":"2022-03-03T23:37:22.5048830Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:37:22.5205069Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:37:22.5205069Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:37:22.4111374Z","primaryEndpoints":{"dfs":"https://clitestrynzkqk7indncjb6c.dfs.core.windows.net/","web":"https://clitestrynzkqk7indncjb6c.z2.web.core.windows.net/","blob":"https://clitestrynzkqk7indncjb6c.blob.core.windows.net/","queue":"https://clitestrynzkqk7indncjb6c.queue.core.windows.net/","table":"https://clitestrynzkqk7indncjb6c.table.core.windows.net/","file":"https://clitestrynzkqk7indncjb6c.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3dson3a62z7n3t273by34bdkoa3bdosbrwqb6iwpygxslz6qc3jfeirp57b7zgufmnqk/providers/Microsoft.Storage/storageAccounts/clitests4scvwk2agr6ufpu3","name":"clitests4scvwk2agr6ufpu3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T09:55:14.9729032Z","key2":"2022-02-24T09:55:14.9729032Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:55:14.9729032Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:55:14.9729032Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:55:14.8791923Z","primaryEndpoints":{"dfs":"https://clitests4scvwk2agr6ufpu3.dfs.core.windows.net/","web":"https://clitests4scvwk2agr6ufpu3.z2.web.core.windows.net/","blob":"https://clitests4scvwk2agr6ufpu3.blob.core.windows.net/","queue":"https://clitests4scvwk2agr6ufpu3.queue.core.windows.net/","table":"https://clitests4scvwk2agr6ufpu3.table.core.windows.net/","file":"https://clitests4scvwk2agr6ufpu3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlmm4hekch44v2jjs6g7whi3qbgamfmevxrpjihfokewye7h3suswarq4mw5gdmosfj2y/providers/Microsoft.Storage/storageAccounts/clitests6o6rszcmwmsvtcwx","name":"clitests6o6rszcmwmsvtcwx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-11T14:15:04.1323335Z","key2":"2022-04-11T14:15:04.1323335Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:15:04.1479441Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:15:04.1479441Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:15:04.0385481Z","primaryEndpoints":{"dfs":"https://clitests6o6rszcmwmsvtcwx.dfs.core.windows.net/","web":"https://clitests6o6rszcmwmsvtcwx.z2.web.core.windows.net/","blob":"https://clitests6o6rszcmwmsvtcwx.blob.core.windows.net/","queue":"https://clitests6o6rszcmwmsvtcwx.queue.core.windows.net/","table":"https://clitests6o6rszcmwmsvtcwx.table.core.windows.net/","file":"https://clitests6o6rszcmwmsvtcwx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest62jxvr4odko5gn5tjo4z7ypmirid6zm72g3ah6zg25qh5r5xve5fhikdcnjpxvsaikhl/providers/Microsoft.Storage/storageAccounts/clitestst2iwgltnfj4zoiva","name":"clitestst2iwgltnfj4zoiva","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-27T01:58:18.2723177Z","key2":"2021-08-27T01:58:18.2723177Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-27T01:58:18.2410749Z","primaryEndpoints":{"dfs":"https://clitestst2iwgltnfj4zoiva.dfs.core.windows.net/","web":"https://clitestst2iwgltnfj4zoiva.z2.web.core.windows.net/","blob":"https://clitestst2iwgltnfj4zoiva.blob.core.windows.net/","queue":"https://clitestst2iwgltnfj4zoiva.queue.core.windows.net/","table":"https://clitestst2iwgltnfj4zoiva.table.core.windows.net/","file":"https://clitestst2iwgltnfj4zoiva.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestqqus2xas5sl4htgx2ev4bhu3lxjpkejupglkxwe3cxmbgv65vz5cdduhnn2de5v5vzd5/providers/Microsoft.Storage/storageAccounts/clitesttrel7vnpc5dinlpqy","name":"clitesttrel7vnpc5dinlpqy","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-25T23:43:10.0638555Z","key2":"2022-08-25T23:43:10.0638555Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T23:43:10.2982408Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T23:43:10.2982408Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-25T23:43:09.9232350Z","primaryEndpoints":{"dfs":"https://clitesttrel7vnpc5dinlpqy.dfs.core.windows.net/","web":"https://clitesttrel7vnpc5dinlpqy.z2.web.core.windows.net/","blob":"https://clitesttrel7vnpc5dinlpqy.blob.core.windows.net/","queue":"https://clitesttrel7vnpc5dinlpqy.queue.core.windows.net/","table":"https://clitesttrel7vnpc5dinlpqy.table.core.windows.net/","file":"https://clitesttrel7vnpc5dinlpqy.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestxk2peoqt7nd76ktof7sub3mkkcldygtt36d3imnwjd5clletodypibd5uaglpdk44yjm/providers/Microsoft.Storage/storageAccounts/clitestu6whdalngwsksemjs","name":"clitestu6whdalngwsksemjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-10T02:29:23.5697486Z","key2":"2021-09-10T02:29:23.5697486Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T02:29:23.5072536Z","primaryEndpoints":{"dfs":"https://clitestu6whdalngwsksemjs.dfs.core.windows.net/","web":"https://clitestu6whdalngwsksemjs.z2.web.core.windows.net/","blob":"https://clitestu6whdalngwsksemjs.blob.core.windows.net/","queue":"https://clitestu6whdalngwsksemjs.queue.core.windows.net/","table":"https://clitestu6whdalngwsksemjs.table.core.windows.net/","file":"https://clitestu6whdalngwsksemjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestso6t4hpogf5y47thn6pcvkyr3q7vlshzebjjlol4bdv3fmskm6fr5qutj77lbcad4b2b/providers/Microsoft.Storage/storageAccounts/clitestuwirxbmysh2gsi45z","name":"clitestuwirxbmysh2gsi45z","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-23T23:37:58.6797770Z","key2":"2022-06-23T23:37:58.6797770Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-23T23:37:58.6797770Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-23T23:37:58.6797770Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-23T23:37:58.5391421Z","primaryEndpoints":{"dfs":"https://clitestuwirxbmysh2gsi45z.dfs.core.windows.net/","web":"https://clitestuwirxbmysh2gsi45z.z2.web.core.windows.net/","blob":"https://clitestuwirxbmysh2gsi45z.blob.core.windows.net/","queue":"https://clitestuwirxbmysh2gsi45z.queue.core.windows.net/","table":"https://clitestuwirxbmysh2gsi45z.table.core.windows.net/","file":"https://clitestuwirxbmysh2gsi45z.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwbzchpbjgcxxskmdhphtbzptfkqdlzhapbqla2v27iw54pevob7yanyz7ppmmigrhtkk/providers/Microsoft.Storage/storageAccounts/clitestvuslwcarkk3sdmgga","name":"clitestvuslwcarkk3sdmgga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-25T23:14:55.4674102Z","key2":"2021-11-25T23:14:55.4674102Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T23:14:55.4674102Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T23:14:55.4674102Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T23:14:55.3892927Z","primaryEndpoints":{"dfs":"https://clitestvuslwcarkk3sdmgga.dfs.core.windows.net/","web":"https://clitestvuslwcarkk3sdmgga.z2.web.core.windows.net/","blob":"https://clitestvuslwcarkk3sdmgga.blob.core.windows.net/","queue":"https://clitestvuslwcarkk3sdmgga.queue.core.windows.net/","table":"https://clitestvuslwcarkk3sdmgga.table.core.windows.net/","file":"https://clitestvuslwcarkk3sdmgga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlriqfcojv6aujusys633edrxi3tkric7e6cvk5wwgjmdg4736dv56w4lwzmdnq5tr3mq/providers/Microsoft.Storage/storageAccounts/clitestw6aumidrfwmoqkzvm","name":"clitestw6aumidrfwmoqkzvm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:32:38.8527397Z","key2":"2021-11-18T23:32:38.8527397Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:32:38.7902807Z","primaryEndpoints":{"dfs":"https://clitestw6aumidrfwmoqkzvm.dfs.core.windows.net/","web":"https://clitestw6aumidrfwmoqkzvm.z2.web.core.windows.net/","blob":"https://clitestw6aumidrfwmoqkzvm.blob.core.windows.net/","queue":"https://clitestw6aumidrfwmoqkzvm.queue.core.windows.net/","table":"https://clitestw6aumidrfwmoqkzvm.table.core.windows.net/","file":"https://clitestw6aumidrfwmoqkzvm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestreufd5cqee3zivebxym7cxi57izubkyszpgf3xlnt4bsit2x6ptggeuh6qiwu4jvwhd5/providers/Microsoft.Storage/storageAccounts/clitestwbzje3s6lhe5qaq5l","name":"clitestwbzje3s6lhe5qaq5l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-23T22:28:23.6667592Z","key2":"2021-12-23T22:28:23.6667592Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:28:23.6822263Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:28:23.6822263Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:28:23.5884630Z","primaryEndpoints":{"dfs":"https://clitestwbzje3s6lhe5qaq5l.dfs.core.windows.net/","web":"https://clitestwbzje3s6lhe5qaq5l.z2.web.core.windows.net/","blob":"https://clitestwbzje3s6lhe5qaq5l.blob.core.windows.net/","queue":"https://clitestwbzje3s6lhe5qaq5l.queue.core.windows.net/","table":"https://clitestwbzje3s6lhe5qaq5l.table.core.windows.net/","file":"https://clitestwbzje3s6lhe5qaq5l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttlschpyugymorheodsulam7yhpwylijzpbmjr3phwwis4vj2rx5elxcjkb236fcnumx3/providers/Microsoft.Storage/storageAccounts/clitestwv22naweyfr4m5rga","name":"clitestwv22naweyfr4m5rga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:54:26.9185866Z","key2":"2021-11-01T19:54:26.9185866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:54:26.8717369Z","primaryEndpoints":{"dfs":"https://clitestwv22naweyfr4m5rga.dfs.core.windows.net/","web":"https://clitestwv22naweyfr4m5rga.z2.web.core.windows.net/","blob":"https://clitestwv22naweyfr4m5rga.blob.core.windows.net/","queue":"https://clitestwv22naweyfr4m5rga.queue.core.windows.net/","table":"https://clitestwv22naweyfr4m5rga.table.core.windows.net/","file":"https://clitestwv22naweyfr4m5rga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth52efeutldrxowe5cfayjvk4zhpypdmky6fyppzro5r3ldqu7dwf2ca6jf3lqm4eijf6/providers/Microsoft.Storage/storageAccounts/clitestx5fskzfbidzs4kqmu","name":"clitestx5fskzfbidzs4kqmu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:48:16.0575682Z","key2":"2021-11-05T08:48:16.0575682Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:48:15.9794412Z","primaryEndpoints":{"dfs":"https://clitestx5fskzfbidzs4kqmu.dfs.core.windows.net/","web":"https://clitestx5fskzfbidzs4kqmu.z2.web.core.windows.net/","blob":"https://clitestx5fskzfbidzs4kqmu.blob.core.windows.net/","queue":"https://clitestx5fskzfbidzs4kqmu.queue.core.windows.net/","table":"https://clitestx5fskzfbidzs4kqmu.table.core.windows.net/","file":"https://clitestx5fskzfbidzs4kqmu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesti6qxvg2pnr4ox6h5c3q3rihq5r56452igsbp6tpbubyok4cabvhryfo7fuvf2je57mlq/providers/Microsoft.Storage/storageAccounts/clitestxa37jvyubsj4yssqf","name":"clitestxa37jvyubsj4yssqf","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-19T02:53:27.8549195Z","key2":"2022-08-19T02:53:27.8549195Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:53:28.1205092Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:53:28.1205092Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-19T02:53:27.7142914Z","primaryEndpoints":{"dfs":"https://clitestxa37jvyubsj4yssqf.dfs.core.windows.net/","web":"https://clitestxa37jvyubsj4yssqf.z2.web.core.windows.net/","blob":"https://clitestxa37jvyubsj4yssqf.blob.core.windows.net/","queue":"https://clitestxa37jvyubsj4yssqf.queue.core.windows.net/","table":"https://clitestxa37jvyubsj4yssqf.table.core.windows.net/","file":"https://clitestxa37jvyubsj4yssqf.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsfkcdnkd2xngtxma6yip2hrfxcljs3dtv4p6teg457mlhyruamnayv7ejk3e264tbsue/providers/Microsoft.Storage/storageAccounts/clitestxc5fs7nomr2dnwv5h","name":"clitestxc5fs7nomr2dnwv5h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-16T23:57:25.5009113Z","key2":"2021-12-16T23:57:25.5009113Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:57:25.5009113Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:57:25.5009113Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:57:25.4227819Z","primaryEndpoints":{"dfs":"https://clitestxc5fs7nomr2dnwv5h.dfs.core.windows.net/","web":"https://clitestxc5fs7nomr2dnwv5h.z2.web.core.windows.net/","blob":"https://clitestxc5fs7nomr2dnwv5h.blob.core.windows.net/","queue":"https://clitestxc5fs7nomr2dnwv5h.queue.core.windows.net/","table":"https://clitestxc5fs7nomr2dnwv5h.table.core.windows.net/","file":"https://clitestxc5fs7nomr2dnwv5h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuapcrhybuggyatduocbydgd2xgdyuaj26awe5rksptnbf2uz7rbjt5trh6gj3q3jv23u/providers/Microsoft.Storage/storageAccounts/clitestxueoehnvkkqr6h434","name":"clitestxueoehnvkkqr6h434","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T22:09:26.4376958Z","key2":"2022-03-17T22:09:26.4376958Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T22:09:26.4376958Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T22:09:26.4376958Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T22:09:26.3282727Z","primaryEndpoints":{"dfs":"https://clitestxueoehnvkkqr6h434.dfs.core.windows.net/","web":"https://clitestxueoehnvkkqr6h434.z2.web.core.windows.net/","blob":"https://clitestxueoehnvkkqr6h434.blob.core.windows.net/","queue":"https://clitestxueoehnvkkqr6h434.queue.core.windows.net/","table":"https://clitestxueoehnvkkqr6h434.table.core.windows.net/","file":"https://clitestxueoehnvkkqr6h434.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest22jkeprwd3lxhlyqisxtj7yaqkbxjwc46syhcbh3y75hshuspxh6d26ixzu67ht2sjhr/providers/Microsoft.Storage/storageAccounts/clitestyizsohp6lh6zuhgpd","name":"clitestyizsohp6lh6zuhgpd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-22T00:02:28.7597703Z","key2":"2022-07-22T00:02:28.7597703Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-22T00:02:29.0253981Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-22T00:02:29.0253981Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-22T00:02:28.6348202Z","primaryEndpoints":{"dfs":"https://clitestyizsohp6lh6zuhgpd.dfs.core.windows.net/","web":"https://clitestyizsohp6lh6zuhgpd.z2.web.core.windows.net/","blob":"https://clitestyizsohp6lh6zuhgpd.blob.core.windows.net/","queue":"https://clitestyizsohp6lh6zuhgpd.queue.core.windows.net/","table":"https://clitestyizsohp6lh6zuhgpd.table.core.windows.net/","file":"https://clitestyizsohp6lh6zuhgpd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuuzapuumij7y2c5htx335t3nfvqfcjte7oti4odgy3ypszafy5aoft4iutszykqzfavy/providers/Microsoft.Storage/storageAccounts/clitestyqkk5hfglq7mjf773","name":"clitestyqkk5hfglq7mjf773","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-14T16:24:10.7172742Z","key2":"2022-08-14T16:24:10.7172742Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-14T16:24:11.0453913Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-14T16:24:11.0453913Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-14T16:24:10.5922597Z","primaryEndpoints":{"dfs":"https://clitestyqkk5hfglq7mjf773.dfs.core.windows.net/","web":"https://clitestyqkk5hfglq7mjf773.z2.web.core.windows.net/","blob":"https://clitestyqkk5hfglq7mjf773.blob.core.windows.net/","queue":"https://clitestyqkk5hfglq7mjf773.queue.core.windows.net/","table":"https://clitestyqkk5hfglq7mjf773.table.core.windows.net/","file":"https://clitestyqkk5hfglq7mjf773.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlnzg2rscuyweetdgvywse35jkhd3s7gay3wnjzoyqojyq6i3iw42uycss45mj52zitnl/providers/Microsoft.Storage/storageAccounts/clitestzarcstbcgg3yqinfg","name":"clitestzarcstbcgg3yqinfg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-30T02:23:46.1127669Z","key2":"2021-07-30T02:23:46.1127669Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-30T02:23:46.0658902Z","primaryEndpoints":{"dfs":"https://clitestzarcstbcgg3yqinfg.dfs.core.windows.net/","web":"https://clitestzarcstbcgg3yqinfg.z2.web.core.windows.net/","blob":"https://clitestzarcstbcgg3yqinfg.blob.core.windows.net/","queue":"https://clitestzarcstbcgg3yqinfg.queue.core.windows.net/","table":"https://clitestzarcstbcgg3yqinfg.table.core.windows.net/","file":"https://clitestzarcstbcgg3yqinfg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbyccq72r2rnjfc6e7ma7xklipq5yxdec7xzgp3rqdiqvagffurpfcagi7dv3kjixsp7k/providers/Microsoft.Storage/storageAccounts/version25b4mikldc2rugmv6","name":"version25b4mikldc2rugmv6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-17T02:36:57.8240400Z","key2":"2022-06-17T02:36:57.8240400Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-17T02:36:57.8240400Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-17T02:36:57.8240400Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-17T02:36:57.6990367Z","primaryEndpoints":{"dfs":"https://version25b4mikldc2rugmv6.dfs.core.windows.net/","web":"https://version25b4mikldc2rugmv6.z2.web.core.windows.net/","blob":"https://version25b4mikldc2rugmv6.blob.core.windows.net/","queue":"https://version25b4mikldc2rugmv6.queue.core.windows.net/","table":"https://version25b4mikldc2rugmv6.table.core.windows.net/","file":"https://version25b4mikldc2rugmv6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitests76ucvib4b5fgppqu5ciu6pknaatlexv4uk736sdtnk6osbv4idvaj7rh5ojgrjomo2z/providers/Microsoft.Storage/storageAccounts/version2unrg7v6iwv7y5m5l","name":"version2unrg7v6iwv7y5m5l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T21:39:50.1062976Z","key2":"2022-03-17T21:39:50.1062976Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T21:39:50.1062976Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T21:39:50.1062976Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T21:39:50.0281735Z","primaryEndpoints":{"dfs":"https://version2unrg7v6iwv7y5m5l.dfs.core.windows.net/","web":"https://version2unrg7v6iwv7y5m5l.z2.web.core.windows.net/","blob":"https://version2unrg7v6iwv7y5m5l.blob.core.windows.net/","queue":"https://version2unrg7v6iwv7y5m5l.queue.core.windows.net/","table":"https://version2unrg7v6iwv7y5m5l.table.core.windows.net/","file":"https://version2unrg7v6iwv7y5m5l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3tibadds5lu5w2l7eglv3fx6fle6tcdlmpnjyebby5bb5xfopqkxdqumpgyd2feunb2d/providers/Microsoft.Storage/storageAccounts/version4dicc6l6ho3regfk6","name":"version4dicc6l6ho3regfk6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-11T14:00:21.7678463Z","key2":"2022-04-11T14:00:21.7678463Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:00:21.7678463Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:00:21.7678463Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:00:21.6584988Z","primaryEndpoints":{"dfs":"https://version4dicc6l6ho3regfk6.dfs.core.windows.net/","web":"https://version4dicc6l6ho3regfk6.z2.web.core.windows.net/","blob":"https://version4dicc6l6ho3regfk6.blob.core.windows.net/","queue":"https://version4dicc6l6ho3regfk6.queue.core.windows.net/","table":"https://version4dicc6l6ho3regfk6.table.core.windows.net/","file":"https://version4dicc6l6ho3regfk6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwknqzg5zjerxpy3o5hk7dnurdorem3gtbhrpqfkprayy4vlkd4273wxmt3qg7mzreetg/providers/Microsoft.Storage/storageAccounts/version5j4oyz2ix5ku4yhgr","name":"version5j4oyz2ix5ku4yhgr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-12T00:24:16.9641784Z","key2":"2022-08-12T00:24:16.9641784Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T00:24:17.1985596Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T00:24:17.1985596Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-12T00:24:16.8391584Z","primaryEndpoints":{"dfs":"https://version5j4oyz2ix5ku4yhgr.dfs.core.windows.net/","web":"https://version5j4oyz2ix5ku4yhgr.z2.web.core.windows.net/","blob":"https://version5j4oyz2ix5ku4yhgr.blob.core.windows.net/","queue":"https://version5j4oyz2ix5ku4yhgr.queue.core.windows.net/","table":"https://version5j4oyz2ix5ku4yhgr.table.core.windows.net/","file":"https://version5j4oyz2ix5ku4yhgr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestousee7s5ti3bvgsldu3tad76cdv45lzvkwlnece46ufo4hjl22dj6kmqdpkbeba6i7wa/providers/Microsoft.Storage/storageAccounts/version5s35huoclfr4t2omd","name":"version5s35huoclfr4t2omd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T09:39:15.6662132Z","key2":"2022-02-24T09:39:15.6662132Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.6817670Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.6817670Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:39:15.6036637Z","primaryEndpoints":{"dfs":"https://version5s35huoclfr4t2omd.dfs.core.windows.net/","web":"https://version5s35huoclfr4t2omd.z2.web.core.windows.net/","blob":"https://version5s35huoclfr4t2omd.blob.core.windows.net/","queue":"https://version5s35huoclfr4t2omd.queue.core.windows.net/","table":"https://version5s35huoclfr4t2omd.table.core.windows.net/","file":"https://version5s35huoclfr4t2omd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdr6bri6cqc4uqm7ggpwj34csapsvbmlicxdcovjzsxlkc5ph2xyxnjlxzboseuegw5q2/providers/Microsoft.Storage/storageAccounts/versionagcwr45mfhwqkazte","name":"versionagcwr45mfhwqkazte","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-19T23:06:05.8843975Z","key2":"2022-05-19T23:06:05.8843975Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-19T23:06:05.8843975Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-19T23:06:05.8843975Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-19T23:06:05.7750830Z","primaryEndpoints":{"dfs":"https://versionagcwr45mfhwqkazte.dfs.core.windows.net/","web":"https://versionagcwr45mfhwqkazte.z2.web.core.windows.net/","blob":"https://versionagcwr45mfhwqkazte.blob.core.windows.net/","queue":"https://versionagcwr45mfhwqkazte.queue.core.windows.net/","table":"https://versionagcwr45mfhwqkazte.table.core.windows.net/","file":"https://versionagcwr45mfhwqkazte.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrufhmpf72rb43k5blozj25owkww6nh6wkbdmtxrh6ysb753k3nkbcxzyci2q4vgvyjox/providers/Microsoft.Storage/storageAccounts/versionbfwb3mlerhtix2pt6","name":"versionbfwb3mlerhtix2pt6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-19T02:53:03.2297517Z","key2":"2022-08-19T02:53:03.2297517Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:53:03.5735267Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:53:03.5735267Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-19T02:53:03.1047458Z","primaryEndpoints":{"dfs":"https://versionbfwb3mlerhtix2pt6.dfs.core.windows.net/","web":"https://versionbfwb3mlerhtix2pt6.z2.web.core.windows.net/","blob":"https://versionbfwb3mlerhtix2pt6.blob.core.windows.net/","queue":"https://versionbfwb3mlerhtix2pt6.queue.core.windows.net/","table":"https://versionbfwb3mlerhtix2pt6.table.core.windows.net/","file":"https://versionbfwb3mlerhtix2pt6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrbeoeyuczwyiitagnjquifkcu7l7pbiofoqpq5dvnyw6t2g23cidvmrfpsiitzgvvltc/providers/Microsoft.Storage/storageAccounts/versionbxfkluj64kluccc4m","name":"versionbxfkluj64kluccc4m","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T03:38:23.7393566Z","key2":"2022-03-18T03:38:23.7393566Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:38:23.7393566Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:38:23.7393566Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:38:23.6299381Z","primaryEndpoints":{"dfs":"https://versionbxfkluj64kluccc4m.dfs.core.windows.net/","web":"https://versionbxfkluj64kluccc4m.z2.web.core.windows.net/","blob":"https://versionbxfkluj64kluccc4m.blob.core.windows.net/","queue":"https://versionbxfkluj64kluccc4m.queue.core.windows.net/","table":"https://versionbxfkluj64kluccc4m.table.core.windows.net/","file":"https://versionbxfkluj64kluccc4m.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5feodovurwzsilp6pwlmafeektwxlwijkstn52zi6kxelzeryrhtj3dykralburkfbe2/providers/Microsoft.Storage/storageAccounts/versionc4lto7lppswuwqswn","name":"versionc4lto7lppswuwqswn","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-07T00:11:02.6858446Z","key2":"2022-01-07T00:11:02.6858446Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:11:02.6858446Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:11:02.6858446Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:11:02.5920986Z","primaryEndpoints":{"dfs":"https://versionc4lto7lppswuwqswn.dfs.core.windows.net/","web":"https://versionc4lto7lppswuwqswn.z2.web.core.windows.net/","blob":"https://versionc4lto7lppswuwqswn.blob.core.windows.net/","queue":"https://versionc4lto7lppswuwqswn.queue.core.windows.net/","table":"https://versionc4lto7lppswuwqswn.table.core.windows.net/","file":"https://versionc4lto7lppswuwqswn.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestqpx4xcf6gtr3yurjrgb74quk2nnzv5yecowla4kxmylm5v6xx56nmdzvouyoxqdo2zqa/providers/Microsoft.Storage/storageAccounts/versionca2bdiizawq746gf6","name":"versionca2bdiizawq746gf6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-22T00:02:26.9472670Z","key2":"2022-07-22T00:02:26.9472670Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-22T00:02:27.3066165Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-22T00:02:27.3066165Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-22T00:02:26.8222904Z","primaryEndpoints":{"dfs":"https://versionca2bdiizawq746gf6.dfs.core.windows.net/","web":"https://versionca2bdiizawq746gf6.z2.web.core.windows.net/","blob":"https://versionca2bdiizawq746gf6.blob.core.windows.net/","queue":"https://versionca2bdiizawq746gf6.queue.core.windows.net/","table":"https://versionca2bdiizawq746gf6.table.core.windows.net/","file":"https://versionca2bdiizawq746gf6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2zdiilm3ugwy2dlv37bhlyvyf6wpljit7d6o3zepyw6fkroztx53ouqjyhwp4dkp4jzv/providers/Microsoft.Storage/storageAccounts/versioncal7ire65zyi6zhnx","name":"versioncal7ire65zyi6zhnx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-03T23:20:37.4509722Z","key2":"2022-03-03T23:20:37.4509722Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:20:37.4666237Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:20:37.4666237Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:20:37.3728352Z","primaryEndpoints":{"dfs":"https://versioncal7ire65zyi6zhnx.dfs.core.windows.net/","web":"https://versioncal7ire65zyi6zhnx.z2.web.core.windows.net/","blob":"https://versioncal7ire65zyi6zhnx.blob.core.windows.net/","queue":"https://versioncal7ire65zyi6zhnx.queue.core.windows.net/","table":"https://versioncal7ire65zyi6zhnx.table.core.windows.net/","file":"https://versioncal7ire65zyi6zhnx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest24txadv4waeoqfrbzw4q3e333id45y7nnpuv5vvovws7fhrkesqbuul5chzpu6flgvfk/providers/Microsoft.Storage/storageAccounts/versionclxgou4idgatxjr77","name":"versionclxgou4idgatxjr77","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T09:25:37.7565157Z","key2":"2022-03-16T09:25:37.7565157Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:25:37.7565157Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:25:37.7565157Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:25:37.6627583Z","primaryEndpoints":{"dfs":"https://versionclxgou4idgatxjr77.dfs.core.windows.net/","web":"https://versionclxgou4idgatxjr77.z2.web.core.windows.net/","blob":"https://versionclxgou4idgatxjr77.blob.core.windows.net/","queue":"https://versionclxgou4idgatxjr77.queue.core.windows.net/","table":"https://versionclxgou4idgatxjr77.table.core.windows.net/","file":"https://versionclxgou4idgatxjr77.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdrnnmqa4sgcpa7frydav5ijhdtawsxmmdwnh5rj7r5xhveix5ns7wms6wesgxwc5pu3o/providers/Microsoft.Storage/storageAccounts/versioncq5cycygofi7d6pri","name":"versioncq5cycygofi7d6pri","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-05T23:00:43.4900067Z","key2":"2022-05-05T23:00:43.4900067Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:00:43.4900067Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:00:43.4900067Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:00:43.3650110Z","primaryEndpoints":{"dfs":"https://versioncq5cycygofi7d6pri.dfs.core.windows.net/","web":"https://versioncq5cycygofi7d6pri.z2.web.core.windows.net/","blob":"https://versioncq5cycygofi7d6pri.blob.core.windows.net/","queue":"https://versioncq5cycygofi7d6pri.queue.core.windows.net/","table":"https://versioncq5cycygofi7d6pri.table.core.windows.net/","file":"https://versioncq5cycygofi7d6pri.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsk4lc6dssbjjgkmxuk6phvsahow4dkmxkix2enlwuhhplj3lgqof5kr6leepjdyea3pl/providers/Microsoft.Storage/storageAccounts/versioncuioqcwvj2iwjmldg","name":"versioncuioqcwvj2iwjmldg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T08:54:58.9739508Z","key2":"2022-03-16T08:54:58.9739508Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T08:54:58.9895499Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T08:54:58.9895499Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T08:54:58.9114548Z","primaryEndpoints":{"dfs":"https://versioncuioqcwvj2iwjmldg.dfs.core.windows.net/","web":"https://versioncuioqcwvj2iwjmldg.z2.web.core.windows.net/","blob":"https://versioncuioqcwvj2iwjmldg.blob.core.windows.net/","queue":"https://versioncuioqcwvj2iwjmldg.queue.core.windows.net/","table":"https://versioncuioqcwvj2iwjmldg.table.core.windows.net/","file":"https://versioncuioqcwvj2iwjmldg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsgar4qjt34qhsuj6hez7kimz6mfle7eczvq5bfsh7xpilagusjstjetu65f2u6vh5qeb/providers/Microsoft.Storage/storageAccounts/versiond3oz7jhpapoxnxxci","name":"versiond3oz7jhpapoxnxxci","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-26T08:45:21.5394973Z","key2":"2022-04-26T08:45:21.5394973Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:45:21.5394973Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:45:21.5394973Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:45:21.4301251Z","primaryEndpoints":{"dfs":"https://versiond3oz7jhpapoxnxxci.dfs.core.windows.net/","web":"https://versiond3oz7jhpapoxnxxci.z2.web.core.windows.net/","blob":"https://versiond3oz7jhpapoxnxxci.blob.core.windows.net/","queue":"https://versiond3oz7jhpapoxnxxci.queue.core.windows.net/","table":"https://versiond3oz7jhpapoxnxxci.table.core.windows.net/","file":"https://versiond3oz7jhpapoxnxxci.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth6t5wqiulzt7vmszohprfrvkph7c226cgihbujtdvljcbvc4d4zwjbhwjscbts34c7up/providers/Microsoft.Storage/storageAccounts/versiondj27wf2pbuqyzilmd","name":"versiondj27wf2pbuqyzilmd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-11T13:45:18.9773986Z","key2":"2022-04-11T13:45:18.9773986Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T13:45:18.9773986Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T13:45:18.9773986Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T13:45:18.8834129Z","primaryEndpoints":{"dfs":"https://versiondj27wf2pbuqyzilmd.dfs.core.windows.net/","web":"https://versiondj27wf2pbuqyzilmd.z2.web.core.windows.net/","blob":"https://versiondj27wf2pbuqyzilmd.blob.core.windows.net/","queue":"https://versiondj27wf2pbuqyzilmd.queue.core.windows.net/","table":"https://versiondj27wf2pbuqyzilmd.table.core.windows.net/","file":"https://versiondj27wf2pbuqyzilmd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfyxdmvu32prroldn2p24a3iyr2phi7o22i26szwv2kuwh6zaj4rdet7ms5gdjnam2egt/providers/Microsoft.Storage/storageAccounts/versiondjhixg3cqipgjsmx4","name":"versiondjhixg3cqipgjsmx4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T07:41:23.9995280Z","key2":"2022-03-17T07:41:23.9995280Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:41:23.9995280Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:41:23.9995280Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:41:23.9213706Z","primaryEndpoints":{"dfs":"https://versiondjhixg3cqipgjsmx4.dfs.core.windows.net/","web":"https://versiondjhixg3cqipgjsmx4.z2.web.core.windows.net/","blob":"https://versiondjhixg3cqipgjsmx4.blob.core.windows.net/","queue":"https://versiondjhixg3cqipgjsmx4.queue.core.windows.net/","table":"https://versiondjhixg3cqipgjsmx4.table.core.windows.net/","file":"https://versiondjhixg3cqipgjsmx4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestchwod5nqxyebiyl6j4s2afrqmitcdhgmxhxszsf4wv6qwws7hvhvget5u2i2cua63cxc/providers/Microsoft.Storage/storageAccounts/versiondo3arjclzct3ahufa","name":"versiondo3arjclzct3ahufa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T22:34:36.9447831Z","key2":"2022-02-24T22:34:36.9447831Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:34:36.9447831Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:34:36.9447831Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:34:36.8510092Z","primaryEndpoints":{"dfs":"https://versiondo3arjclzct3ahufa.dfs.core.windows.net/","web":"https://versiondo3arjclzct3ahufa.z2.web.core.windows.net/","blob":"https://versiondo3arjclzct3ahufa.blob.core.windows.net/","queue":"https://versiondo3arjclzct3ahufa.queue.core.windows.net/","table":"https://versiondo3arjclzct3ahufa.table.core.windows.net/","file":"https://versiondo3arjclzct3ahufa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwmea2y23rvqprapww6ikfm6jk7abomcuhzngx3bltkme33xh2xkdgmn4n2fwcljqw3wv/providers/Microsoft.Storage/storageAccounts/versiondufx3et3bnjtg4xch","name":"versiondufx3et3bnjtg4xch","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-14T09:15:36.8221632Z","key2":"2022-04-14T09:15:36.8221632Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T09:15:36.8221632Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T09:15:36.8221632Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T09:15:36.7127958Z","primaryEndpoints":{"dfs":"https://versiondufx3et3bnjtg4xch.dfs.core.windows.net/","web":"https://versiondufx3et3bnjtg4xch.z2.web.core.windows.net/","blob":"https://versiondufx3et3bnjtg4xch.blob.core.windows.net/","queue":"https://versiondufx3et3bnjtg4xch.queue.core.windows.net/","table":"https://versiondufx3et3bnjtg4xch.table.core.windows.net/","file":"https://versiondufx3et3bnjtg4xch.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestakpkuxez73vyn36t4gn7rzxofnqwgm72bcmj4cdcadyalqklc2kyfx3qcfe3x2botivf/providers/Microsoft.Storage/storageAccounts/versionehqwmpnsaeybdcd4s","name":"versionehqwmpnsaeybdcd4s","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-25T22:59:30.3393037Z","key2":"2021-11-25T22:59:30.3393037Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T22:59:30.3549542Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T22:59:30.3549542Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T22:59:30.2768393Z","primaryEndpoints":{"dfs":"https://versionehqwmpnsaeybdcd4s.dfs.core.windows.net/","web":"https://versionehqwmpnsaeybdcd4s.z2.web.core.windows.net/","blob":"https://versionehqwmpnsaeybdcd4s.blob.core.windows.net/","queue":"https://versionehqwmpnsaeybdcd4s.queue.core.windows.net/","table":"https://versionehqwmpnsaeybdcd4s.table.core.windows.net/","file":"https://versionehqwmpnsaeybdcd4s.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesterdlb62puqdedjbhf3za3vxsu7igmsj447yliowotbxtokfcxj6geys4tgngzk5iuppn/providers/Microsoft.Storage/storageAccounts/versionen7upolksoryxwxnb","name":"versionen7upolksoryxwxnb","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-16T23:42:25.7694875Z","key2":"2021-12-16T23:42:25.7694875Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:42:25.7851037Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:42:25.7851037Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:42:25.7069810Z","primaryEndpoints":{"dfs":"https://versionen7upolksoryxwxnb.dfs.core.windows.net/","web":"https://versionen7upolksoryxwxnb.z2.web.core.windows.net/","blob":"https://versionen7upolksoryxwxnb.blob.core.windows.net/","queue":"https://versionen7upolksoryxwxnb.queue.core.windows.net/","table":"https://versionen7upolksoryxwxnb.table.core.windows.net/","file":"https://versionen7upolksoryxwxnb.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestnfengdfk2ngxhha63iyxjynzy5sg34coci5qfoxts5tendps4otgznuyxp6keb3cjgim/providers/Microsoft.Storage/storageAccounts/versionf4ot6q5su44seyetx","name":"versionf4ot6q5su44seyetx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-25T23:43:19.6107829Z","key2":"2022-08-25T23:43:19.6107829Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T23:43:19.8139133Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T23:43:19.8139133Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-25T23:43:19.4701662Z","primaryEndpoints":{"dfs":"https://versionf4ot6q5su44seyetx.dfs.core.windows.net/","web":"https://versionf4ot6q5su44seyetx.z2.web.core.windows.net/","blob":"https://versionf4ot6q5su44seyetx.blob.core.windows.net/","queue":"https://versionf4ot6q5su44seyetx.queue.core.windows.net/","table":"https://versionf4ot6q5su44seyetx.table.core.windows.net/","file":"https://versionf4ot6q5su44seyetx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrvgfrlua5ai2leiutip26a27qxs2lzedu3g6gjrqjzi3rna2yxcinlc5ioxhhfvnx5rv/providers/Microsoft.Storage/storageAccounts/versiongdbkjcemb56eyu3rj","name":"versiongdbkjcemb56eyu3rj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:17:17.2960150Z","key2":"2021-11-18T23:17:17.2960150Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:17.2335295Z","primaryEndpoints":{"dfs":"https://versiongdbkjcemb56eyu3rj.dfs.core.windows.net/","web":"https://versiongdbkjcemb56eyu3rj.z2.web.core.windows.net/","blob":"https://versiongdbkjcemb56eyu3rj.blob.core.windows.net/","queue":"https://versiongdbkjcemb56eyu3rj.queue.core.windows.net/","table":"https://versiongdbkjcemb56eyu3rj.table.core.windows.net/","file":"https://versiongdbkjcemb56eyu3rj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestylszwk3tqxigxfm3ongkbbgoelhfjiyrqqybpleivk3e7qa7gylocnj7rkod4jivp33h/providers/Microsoft.Storage/storageAccounts/versionha6yygjfdivfeud5k","name":"versionha6yygjfdivfeud5k","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-21T23:02:51.1629635Z","key2":"2022-04-21T23:02:51.1629635Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:02:51.1629635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:02:51.1629635Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:02:51.0535636Z","primaryEndpoints":{"dfs":"https://versionha6yygjfdivfeud5k.dfs.core.windows.net/","web":"https://versionha6yygjfdivfeud5k.z2.web.core.windows.net/","blob":"https://versionha6yygjfdivfeud5k.blob.core.windows.net/","queue":"https://versionha6yygjfdivfeud5k.queue.core.windows.net/","table":"https://versionha6yygjfdivfeud5k.table.core.windows.net/","file":"https://versionha6yygjfdivfeud5k.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestnsw32miijgjmandsqepzbytqsxe2dbpfuh3t2d2u7saewxrnoilajjocllnjxt45ggjc/providers/Microsoft.Storage/storageAccounts/versionhf53xzmbt3fwu3kn3","name":"versionhf53xzmbt3fwu3kn3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:29:06.2474527Z","key2":"2021-09-07T02:29:06.2474527Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:29:06.1849281Z","primaryEndpoints":{"dfs":"https://versionhf53xzmbt3fwu3kn3.dfs.core.windows.net/","web":"https://versionhf53xzmbt3fwu3kn3.z2.web.core.windows.net/","blob":"https://versionhf53xzmbt3fwu3kn3.blob.core.windows.net/","queue":"https://versionhf53xzmbt3fwu3kn3.queue.core.windows.net/","table":"https://versionhf53xzmbt3fwu3kn3.table.core.windows.net/","file":"https://versionhf53xzmbt3fwu3kn3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2d5fjdmfhy7kkhkwbqo7gngf6a2wlnvvaku7gxkwitz7vnnppvgothckppdsxhv3nem2/providers/Microsoft.Storage/storageAccounts/versionhh4uq45sysgx6awnt","name":"versionhh4uq45sysgx6awnt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-14T23:26:38.4670192Z","key2":"2022-04-14T23:26:38.4670192Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:26:38.4670192Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:26:38.4670192Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:26:38.3576837Z","primaryEndpoints":{"dfs":"https://versionhh4uq45sysgx6awnt.dfs.core.windows.net/","web":"https://versionhh4uq45sysgx6awnt.z2.web.core.windows.net/","blob":"https://versionhh4uq45sysgx6awnt.blob.core.windows.net/","queue":"https://versionhh4uq45sysgx6awnt.queue.core.windows.net/","table":"https://versionhh4uq45sysgx6awnt.table.core.windows.net/","file":"https://versionhh4uq45sysgx6awnt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliteste6lnfkdei2mzinyplhajo2t5ly327gwrwmuf5mrj74avle2b2kf4ulu4u3zlxxwts4ab/providers/Microsoft.Storage/storageAccounts/versionib6wdvsaxftddhtmh","name":"versionib6wdvsaxftddhtmh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-28T22:27:01.2291330Z","key2":"2022-04-28T22:27:01.2291330Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:27:01.2447470Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:27:01.2447470Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:27:01.1041285Z","primaryEndpoints":{"dfs":"https://versionib6wdvsaxftddhtmh.dfs.core.windows.net/","web":"https://versionib6wdvsaxftddhtmh.z2.web.core.windows.net/","blob":"https://versionib6wdvsaxftddhtmh.blob.core.windows.net/","queue":"https://versionib6wdvsaxftddhtmh.queue.core.windows.net/","table":"https://versionib6wdvsaxftddhtmh.table.core.windows.net/","file":"https://versionib6wdvsaxftddhtmh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesti5twtev4nt7cel7ygxhupx6tvfowykbyxvq7aqclx76mlvsomt6fradfz3xbl2qkuo77/providers/Microsoft.Storage/storageAccounts/versionijonp732sqkyptdxv","name":"versionijonp732sqkyptdxv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-15T14:22:06.6522048Z","key2":"2022-06-15T14:22:06.6522048Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-15T14:22:06.6522048Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-15T14:22:06.6522048Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-15T14:22:06.5115315Z","primaryEndpoints":{"dfs":"https://versionijonp732sqkyptdxv.dfs.core.windows.net/","web":"https://versionijonp732sqkyptdxv.z2.web.core.windows.net/","blob":"https://versionijonp732sqkyptdxv.blob.core.windows.net/","queue":"https://versionijonp732sqkyptdxv.queue.core.windows.net/","table":"https://versionijonp732sqkyptdxv.table.core.windows.net/","file":"https://versionijonp732sqkyptdxv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest74lh5dcwdivjzpbyoqvafkpvnfg3tregvqtf456g3udapzlfl4jyqlh3sde26d2jh3x6/providers/Microsoft.Storage/storageAccounts/versioniuezathg3v5v754k7","name":"versioniuezathg3v5v754k7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-18T05:42:37.9837177Z","key2":"2022-04-18T05:42:37.9837177Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T05:42:37.9837177Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T05:42:37.9837177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-18T05:42:37.8743443Z","primaryEndpoints":{"dfs":"https://versioniuezathg3v5v754k7.dfs.core.windows.net/","web":"https://versioniuezathg3v5v754k7.z2.web.core.windows.net/","blob":"https://versioniuezathg3v5v754k7.blob.core.windows.net/","queue":"https://versioniuezathg3v5v754k7.queue.core.windows.net/","table":"https://versioniuezathg3v5v754k7.table.core.windows.net/","file":"https://versioniuezathg3v5v754k7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcdvjnuor7heyx55wxz6h4jdaxblpvnyfdk47a7ameycswklee6pxoev7idm4m644qisg/providers/Microsoft.Storage/storageAccounts/versionizwzijfbdy5w6mvbu","name":"versionizwzijfbdy5w6mvbu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-25T00:18:06.3765854Z","key2":"2022-02-25T00:18:06.3765854Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:18:06.3921844Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:18:06.3921844Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:18:06.2828372Z","primaryEndpoints":{"dfs":"https://versionizwzijfbdy5w6mvbu.dfs.core.windows.net/","web":"https://versionizwzijfbdy5w6mvbu.z2.web.core.windows.net/","blob":"https://versionizwzijfbdy5w6mvbu.blob.core.windows.net/","queue":"https://versionizwzijfbdy5w6mvbu.queue.core.windows.net/","table":"https://versionizwzijfbdy5w6mvbu.table.core.windows.net/","file":"https://versionizwzijfbdy5w6mvbu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyvfj56iwcgufwkocne3mpvfybdxcrwji7mafk5rzvuauqwkw74uorxwcrsdrex4qzxdb/providers/Microsoft.Storage/storageAccounts/versionjf5vwi62gnojxbrin","name":"versionjf5vwi62gnojxbrin","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-23T23:11:02.4854396Z","key2":"2022-06-23T23:11:02.4854396Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-23T23:11:02.4854396Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-23T23:11:02.4854396Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-23T23:11:02.3760826Z","primaryEndpoints":{"dfs":"https://versionjf5vwi62gnojxbrin.dfs.core.windows.net/","web":"https://versionjf5vwi62gnojxbrin.z2.web.core.windows.net/","blob":"https://versionjf5vwi62gnojxbrin.blob.core.windows.net/","queue":"https://versionjf5vwi62gnojxbrin.queue.core.windows.net/","table":"https://versionjf5vwi62gnojxbrin.table.core.windows.net/","file":"https://versionjf5vwi62gnojxbrin.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2bf3y635koqimi32ff256osuvtgnxbnvoqb3mm4yqgsppfdhiopu7vwpgv7ibucpvvas/providers/Microsoft.Storage/storageAccounts/versionkd6zpavp6fipypfp5","name":"versionkd6zpavp6fipypfp5","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-05T00:18:31.9846284Z","key2":"2022-08-05T00:18:31.9846284Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-05T00:18:32.2346451Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-05T00:18:32.2346451Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-05T00:18:31.8752287Z","primaryEndpoints":{"dfs":"https://versionkd6zpavp6fipypfp5.dfs.core.windows.net/","web":"https://versionkd6zpavp6fipypfp5.z2.web.core.windows.net/","blob":"https://versionkd6zpavp6fipypfp5.blob.core.windows.net/","queue":"https://versionkd6zpavp6fipypfp5.queue.core.windows.net/","table":"https://versionkd6zpavp6fipypfp5.table.core.windows.net/","file":"https://versionkd6zpavp6fipypfp5.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfjg3rxzubogi6qrblsgw3mmesxhn3pxjg27a5ktf7gnrxrnhwlrylljjshcwyyghqxbu/providers/Microsoft.Storage/storageAccounts/versionko6ksgiyhw5bzflr7","name":"versionko6ksgiyhw5bzflr7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-15T09:44:43.3485045Z","key2":"2022-04-15T09:44:43.3485045Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-15T09:44:43.3485045Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-15T09:44:43.3485045Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-15T09:44:43.2547236Z","primaryEndpoints":{"dfs":"https://versionko6ksgiyhw5bzflr7.dfs.core.windows.net/","web":"https://versionko6ksgiyhw5bzflr7.z2.web.core.windows.net/","blob":"https://versionko6ksgiyhw5bzflr7.blob.core.windows.net/","queue":"https://versionko6ksgiyhw5bzflr7.queue.core.windows.net/","table":"https://versionko6ksgiyhw5bzflr7.table.core.windows.net/","file":"https://versionko6ksgiyhw5bzflr7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkzfdhprmzadvpjklrd7656pshnk33mbj6omwyff2jzqjatbmhegyprcfs7wbi4ypmvef/providers/Microsoft.Storage/storageAccounts/versionm5vzvntn2srqhkssx","name":"versionm5vzvntn2srqhkssx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T23:15:38.7806886Z","key2":"2021-12-09T23:15:38.7806886Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:15:38.7806886Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:15:38.7806886Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:15:38.7025605Z","primaryEndpoints":{"dfs":"https://versionm5vzvntn2srqhkssx.dfs.core.windows.net/","web":"https://versionm5vzvntn2srqhkssx.z2.web.core.windows.net/","blob":"https://versionm5vzvntn2srqhkssx.blob.core.windows.net/","queue":"https://versionm5vzvntn2srqhkssx.queue.core.windows.net/","table":"https://versionm5vzvntn2srqhkssx.table.core.windows.net/","file":"https://versionm5vzvntn2srqhkssx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcn3l6sycbepzkd2ybj7plr6gjmx6fgezenx32vhhyyffqqwjya67vjd4kodzxll446ln/providers/Microsoft.Storage/storageAccounts/versionmfgix44dhfghc547p","name":"versionmfgix44dhfghc547p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-19T02:02:38.1319758Z","key2":"2022-08-19T02:02:38.1319758Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:02:38.5850775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:02:38.5850775Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-19T02:02:37.9913600Z","primaryEndpoints":{"dfs":"https://versionmfgix44dhfghc547p.dfs.core.windows.net/","web":"https://versionmfgix44dhfghc547p.z2.web.core.windows.net/","blob":"https://versionmfgix44dhfghc547p.blob.core.windows.net/","queue":"https://versionmfgix44dhfghc547p.queue.core.windows.net/","table":"https://versionmfgix44dhfghc547p.table.core.windows.net/","file":"https://versionmfgix44dhfghc547p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrucmsuhepako3zykpbjum463g65jyy7upzyjekugytpfpg7aad4exswd6bb4aewzt3wx/providers/Microsoft.Storage/storageAccounts/versionmgdngb2qf4xgzpvw7","name":"versionmgdngb2qf4xgzpvw7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-28T23:37:08.8042346Z","key2":"2022-07-28T23:37:08.8042346Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:37:09.2104896Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:37:09.2104896Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-28T23:37:08.6791923Z","primaryEndpoints":{"dfs":"https://versionmgdngb2qf4xgzpvw7.dfs.core.windows.net/","web":"https://versionmgdngb2qf4xgzpvw7.z2.web.core.windows.net/","blob":"https://versionmgdngb2qf4xgzpvw7.blob.core.windows.net/","queue":"https://versionmgdngb2qf4xgzpvw7.queue.core.windows.net/","table":"https://versionmgdngb2qf4xgzpvw7.table.core.windows.net/","file":"https://versionmgdngb2qf4xgzpvw7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest343dzma6rtq62hhvl7i2wibqtwc2zsp7drdz7nvo75qh3w33dqswyvczpijlaklzk3hc/providers/Microsoft.Storage/storageAccounts/versionn73uafs7viwmdhk3w","name":"versionn73uafs7viwmdhk3w","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-18T08:14:36.3481708Z","key2":"2022-08-18T08:14:36.3481708Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T08:14:36.7543973Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T08:14:36.7543973Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-18T08:14:36.2075294Z","primaryEndpoints":{"dfs":"https://versionn73uafs7viwmdhk3w.dfs.core.windows.net/","web":"https://versionn73uafs7viwmdhk3w.z2.web.core.windows.net/","blob":"https://versionn73uafs7viwmdhk3w.blob.core.windows.net/","queue":"https://versionn73uafs7viwmdhk3w.queue.core.windows.net/","table":"https://versionn73uafs7viwmdhk3w.table.core.windows.net/","file":"https://versionn73uafs7viwmdhk3w.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4ynxfhry5dpkuo3xwssvdbe3iwcxt5ewlnx3lz332nsyd3piqlooviiegb2uplmxnctu/providers/Microsoft.Storage/storageAccounts/versionnaeshhylx7ri7rvhk","name":"versionnaeshhylx7ri7rvhk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T01:17:46.3041863Z","key2":"2022-03-18T01:17:46.3041863Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:17:46.3198179Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:17:46.3198179Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:17:46.0698030Z","primaryEndpoints":{"dfs":"https://versionnaeshhylx7ri7rvhk.dfs.core.windows.net/","web":"https://versionnaeshhylx7ri7rvhk.z2.web.core.windows.net/","blob":"https://versionnaeshhylx7ri7rvhk.blob.core.windows.net/","queue":"https://versionnaeshhylx7ri7rvhk.queue.core.windows.net/","table":"https://versionnaeshhylx7ri7rvhk.table.core.windows.net/","file":"https://versionnaeshhylx7ri7rvhk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestqtov5khibmli5l5qnqxx7sqsiomitv4dy6e7v2p6g6baxo5k7gybvzol2mludvvlt3hk/providers/Microsoft.Storage/storageAccounts/versionncglaxef3bncte6ug","name":"versionncglaxef3bncte6ug","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T05:01:00.4631938Z","key2":"2021-12-09T05:01:00.4631938Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:01:00.4631938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:01:00.4631938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:01:00.4007471Z","primaryEndpoints":{"dfs":"https://versionncglaxef3bncte6ug.dfs.core.windows.net/","web":"https://versionncglaxef3bncte6ug.z2.web.core.windows.net/","blob":"https://versionncglaxef3bncte6ug.blob.core.windows.net/","queue":"https://versionncglaxef3bncte6ug.queue.core.windows.net/","table":"https://versionncglaxef3bncte6ug.table.core.windows.net/","file":"https://versionncglaxef3bncte6ug.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyex6l2i6otx4eikzzr7rikdz4b6rezhqeg6mnzwvtof4vpxkcw34rd7hwpk7q5ltnrxp/providers/Microsoft.Storage/storageAccounts/versionncoq7gv5mbp4o2uf6","name":"versionncoq7gv5mbp4o2uf6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T06:47:03.1566686Z","key2":"2021-10-15T06:47:03.1566686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T06:47:03.0785915Z","primaryEndpoints":{"dfs":"https://versionncoq7gv5mbp4o2uf6.dfs.core.windows.net/","web":"https://versionncoq7gv5mbp4o2uf6.z2.web.core.windows.net/","blob":"https://versionncoq7gv5mbp4o2uf6.blob.core.windows.net/","queue":"https://versionncoq7gv5mbp4o2uf6.queue.core.windows.net/","table":"https://versionncoq7gv5mbp4o2uf6.table.core.windows.net/","file":"https://versionncoq7gv5mbp4o2uf6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvexlopurtffpw44qelwzhnrj4hrri453i57dssogm2nrq3tgb4gdctqnh22two36b4r4/providers/Microsoft.Storage/storageAccounts/versiono3puxbh7aoleprgrj","name":"versiono3puxbh7aoleprgrj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-07T22:54:30.4927734Z","key2":"2022-04-07T22:54:30.4927734Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T22:54:30.4927734Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T22:54:30.4927734Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T22:54:30.3834786Z","primaryEndpoints":{"dfs":"https://versiono3puxbh7aoleprgrj.dfs.core.windows.net/","web":"https://versiono3puxbh7aoleprgrj.z2.web.core.windows.net/","blob":"https://versiono3puxbh7aoleprgrj.blob.core.windows.net/","queue":"https://versiono3puxbh7aoleprgrj.queue.core.windows.net/","table":"https://versiono3puxbh7aoleprgrj.table.core.windows.net/","file":"https://versiono3puxbh7aoleprgrj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4hjjelhodbnxnyv3gpitmvqm2g57s4osl4jrt3fa5jtsrwbqbikwerf5tiwwmmekgcsp/providers/Microsoft.Storage/storageAccounts/versiono5slm5nxi3gl5ndil","name":"versiono5slm5nxi3gl5ndil","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-12T22:51:21.6092516Z","key2":"2022-05-12T22:51:21.6092516Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T22:51:21.6092516Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T22:51:21.6092516Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T22:51:21.4686030Z","primaryEndpoints":{"dfs":"https://versiono5slm5nxi3gl5ndil.dfs.core.windows.net/","web":"https://versiono5slm5nxi3gl5ndil.z2.web.core.windows.net/","blob":"https://versiono5slm5nxi3gl5ndil.blob.core.windows.net/","queue":"https://versiono5slm5nxi3gl5ndil.queue.core.windows.net/","table":"https://versiono5slm5nxi3gl5ndil.table.core.windows.net/","file":"https://versiono5slm5nxi3gl5ndil.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest362gvxl72v6uq6oj6l7qacksa3grnrow2ahkvkeqkk6frlifprjlz5xq7v7y4mc2mkt4/providers/Microsoft.Storage/storageAccounts/versionomm3qhqmjr7zk4llh","name":"versionomm3qhqmjr7zk4llh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-15T00:27:33.6431259Z","key2":"2022-07-15T00:27:33.6431259Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-15T00:27:33.9400382Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-15T00:27:33.9400382Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-15T00:27:33.5181499Z","primaryEndpoints":{"dfs":"https://versionomm3qhqmjr7zk4llh.dfs.core.windows.net/","web":"https://versionomm3qhqmjr7zk4llh.z2.web.core.windows.net/","blob":"https://versionomm3qhqmjr7zk4llh.blob.core.windows.net/","queue":"https://versionomm3qhqmjr7zk4llh.queue.core.windows.net/","table":"https://versionomm3qhqmjr7zk4llh.table.core.windows.net/","file":"https://versionomm3qhqmjr7zk4llh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5qgbjmgp4dbfryqs33skw2pkptk2sdmoqsw6nqonzmeekbq3ovley42itnpj4yfej5yi/providers/Microsoft.Storage/storageAccounts/versionoojtzpigw27c2rlwi","name":"versionoojtzpigw27c2rlwi","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-30T22:31:21.7608674Z","key2":"2021-12-30T22:31:21.7608674Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:31:21.7765100Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:31:21.7765100Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:31:21.4483344Z","primaryEndpoints":{"dfs":"https://versionoojtzpigw27c2rlwi.dfs.core.windows.net/","web":"https://versionoojtzpigw27c2rlwi.z2.web.core.windows.net/","blob":"https://versionoojtzpigw27c2rlwi.blob.core.windows.net/","queue":"https://versionoojtzpigw27c2rlwi.queue.core.windows.net/","table":"https://versionoojtzpigw27c2rlwi.table.core.windows.net/","file":"https://versionoojtzpigw27c2rlwi.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyxq5yt6z4or5ddvyvubtdjn73mslv25s4bqqme3ljmj6jsaagbmyn376m3cdex35tubw/providers/Microsoft.Storage/storageAccounts/versionqp3efyteboplomp5w","name":"versionqp3efyteboplomp5w","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:20:09.3003824Z","key2":"2021-09-07T02:20:09.3003824Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:20:09.2378807Z","primaryEndpoints":{"dfs":"https://versionqp3efyteboplomp5w.dfs.core.windows.net/","web":"https://versionqp3efyteboplomp5w.z2.web.core.windows.net/","blob":"https://versionqp3efyteboplomp5w.blob.core.windows.net/","queue":"https://versionqp3efyteboplomp5w.queue.core.windows.net/","table":"https://versionqp3efyteboplomp5w.table.core.windows.net/","file":"https://versionqp3efyteboplomp5w.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest27tntypkdnlo3adbzt7qqcx3detlxgtxnuxhaxdgobws4bjc26vshca2qezntlnmpuup/providers/Microsoft.Storage/storageAccounts/versionryihikjyurp5tntba","name":"versionryihikjyurp5tntba","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:07:42.2418545Z","key2":"2021-11-11T22:07:42.2418545Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:42.1637179Z","primaryEndpoints":{"dfs":"https://versionryihikjyurp5tntba.dfs.core.windows.net/","web":"https://versionryihikjyurp5tntba.z2.web.core.windows.net/","blob":"https://versionryihikjyurp5tntba.blob.core.windows.net/","queue":"https://versionryihikjyurp5tntba.queue.core.windows.net/","table":"https://versionryihikjyurp5tntba.table.core.windows.net/","file":"https://versionryihikjyurp5tntba.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestz4bcht3lymqfffkatndjcle4qf567sbk5b3hfcoqhkrfgghei6jeqgan2zr2i2j5fbtq/providers/Microsoft.Storage/storageAccounts/versions3jowsvxiiqegyrbr","name":"versions3jowsvxiiqegyrbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-23T22:12:49.9938938Z","key2":"2021-12-23T22:12:49.9938938Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:12:49.9938938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:12:49.9938938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:12:49.9157469Z","primaryEndpoints":{"dfs":"https://versions3jowsvxiiqegyrbr.dfs.core.windows.net/","web":"https://versions3jowsvxiiqegyrbr.z2.web.core.windows.net/","blob":"https://versions3jowsvxiiqegyrbr.blob.core.windows.net/","queue":"https://versions3jowsvxiiqegyrbr.queue.core.windows.net/","table":"https://versions3jowsvxiiqegyrbr.table.core.windows.net/","file":"https://versions3jowsvxiiqegyrbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesturbzqfflmkkupfwgtkutwvdy5nte5rec7neu6eyya4kahyepssopgq72mzxl54g7h2pt/providers/Microsoft.Storage/storageAccounts/versionscknbekpvmwrjeznt","name":"versionscknbekpvmwrjeznt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-28T02:39:44.7553582Z","key2":"2021-10-28T02:39:44.7553582Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T02:39:44.6772068Z","primaryEndpoints":{"dfs":"https://versionscknbekpvmwrjeznt.dfs.core.windows.net/","web":"https://versionscknbekpvmwrjeznt.z2.web.core.windows.net/","blob":"https://versionscknbekpvmwrjeznt.blob.core.windows.net/","queue":"https://versionscknbekpvmwrjeznt.queue.core.windows.net/","table":"https://versionscknbekpvmwrjeznt.table.core.windows.net/","file":"https://versionscknbekpvmwrjeznt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestd5q64bqhg7etouaunbpihutfyklxtsq6th5x27ddcpkn5ddwaj7yeth7w6vabib2jk36/providers/Microsoft.Storage/storageAccounts/versionsl4dpowre7blcmtnv","name":"versionsl4dpowre7blcmtnv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T13:52:33.1524401Z","key2":"2022-03-17T13:52:33.1524401Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T13:52:33.1682399Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T13:52:33.1682399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T13:52:33.0430992Z","primaryEndpoints":{"dfs":"https://versionsl4dpowre7blcmtnv.dfs.core.windows.net/","web":"https://versionsl4dpowre7blcmtnv.z2.web.core.windows.net/","blob":"https://versionsl4dpowre7blcmtnv.blob.core.windows.net/","queue":"https://versionsl4dpowre7blcmtnv.queue.core.windows.net/","table":"https://versionsl4dpowre7blcmtnv.table.core.windows.net/","file":"https://versionsl4dpowre7blcmtnv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttfwerdemnnqhnkhq7pesq4g3fy2ms2qei6yjrfucueeqhy74fu5kdcxkbap7znlruizn/providers/Microsoft.Storage/storageAccounts/versionsnhg3s55m22flnaim","name":"versionsnhg3s55m22flnaim","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-28T16:47:35.2710910Z","key2":"2022-02-28T16:47:35.2710910Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T16:47:35.2867568Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T16:47:35.2867568Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T16:47:35.1773825Z","primaryEndpoints":{"dfs":"https://versionsnhg3s55m22flnaim.dfs.core.windows.net/","web":"https://versionsnhg3s55m22flnaim.z2.web.core.windows.net/","blob":"https://versionsnhg3s55m22flnaim.blob.core.windows.net/","queue":"https://versionsnhg3s55m22flnaim.queue.core.windows.net/","table":"https://versionsnhg3s55m22flnaim.table.core.windows.net/","file":"https://versionsnhg3s55m22flnaim.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2aypq4ri7ntc4vk7uzqnq5m5uvpubprfpj6qamt74t2ro73rk6gcv6pklnqtlizhvb2r/providers/Microsoft.Storage/storageAccounts/versionsrmjrvzlhnhmolxf2","name":"versionsrmjrvzlhnhmolxf2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-18T15:54:34.4121532Z","key2":"2022-08-18T15:54:34.4121532Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T15:54:34.8184003Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T15:54:34.8184003Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-18T15:54:34.2715218Z","primaryEndpoints":{"dfs":"https://versionsrmjrvzlhnhmolxf2.dfs.core.windows.net/","web":"https://versionsrmjrvzlhnhmolxf2.z2.web.core.windows.net/","blob":"https://versionsrmjrvzlhnhmolxf2.blob.core.windows.net/","queue":"https://versionsrmjrvzlhnhmolxf2.queue.core.windows.net/","table":"https://versionsrmjrvzlhnhmolxf2.table.core.windows.net/","file":"https://versionsrmjrvzlhnhmolxf2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest6j4p5hu3qwk67zq467rtwcd2a7paxiwrgpvjuqvw3drzvoz3clyu22h7l3gmkbn2c4oa/providers/Microsoft.Storage/storageAccounts/versionu6gh46ckmtwb2izub","name":"versionu6gh46ckmtwb2izub","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T05:28:58.1591481Z","key2":"2022-03-16T05:28:58.1591481Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:28:58.1747873Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:28:58.1747873Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:28:58.0654507Z","primaryEndpoints":{"dfs":"https://versionu6gh46ckmtwb2izub.dfs.core.windows.net/","web":"https://versionu6gh46ckmtwb2izub.z2.web.core.windows.net/","blob":"https://versionu6gh46ckmtwb2izub.blob.core.windows.net/","queue":"https://versionu6gh46ckmtwb2izub.queue.core.windows.net/","table":"https://versionu6gh46ckmtwb2izub.table.core.windows.net/","file":"https://versionu6gh46ckmtwb2izub.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestg3t4ff274xdgnl7gmcjibaodgkjehibkbhazsrbxtfbmhdnk5qk32nsvghigjrrfqcf3/providers/Microsoft.Storage/storageAccounts/versionudtckpbeshjnvwywq","name":"versionudtckpbeshjnvwywq","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-14T16:06:54.6367221Z","key2":"2022-08-14T16:06:54.6367221Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-14T16:06:55.0273250Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-14T16:06:55.0273250Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-14T16:06:54.5273449Z","primaryEndpoints":{"dfs":"https://versionudtckpbeshjnvwywq.dfs.core.windows.net/","web":"https://versionudtckpbeshjnvwywq.z2.web.core.windows.net/","blob":"https://versionudtckpbeshjnvwywq.blob.core.windows.net/","queue":"https://versionudtckpbeshjnvwywq.queue.core.windows.net/","table":"https://versionudtckpbeshjnvwywq.table.core.windows.net/","file":"https://versionudtckpbeshjnvwywq.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthjubmr2gcxl7wowm2yz4jtlqknroqoldmrrdz7ijr7kzs3intstr2ag5cuwovsdyfscc/providers/Microsoft.Storage/storageAccounts/versionvndhff7czdxs3e4zs","name":"versionvndhff7czdxs3e4zs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T22:53:55.3378319Z","key2":"2022-03-31T22:53:55.3378319Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:53:55.3378319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:53:55.3378319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:53:55.2284931Z","primaryEndpoints":{"dfs":"https://versionvndhff7czdxs3e4zs.dfs.core.windows.net/","web":"https://versionvndhff7czdxs3e4zs.z2.web.core.windows.net/","blob":"https://versionvndhff7czdxs3e4zs.blob.core.windows.net/","queue":"https://versionvndhff7czdxs3e4zs.queue.core.windows.net/","table":"https://versionvndhff7czdxs3e4zs.table.core.windows.net/","file":"https://versionvndhff7czdxs3e4zs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc37roadc7h7ibpejg25elnx5c7th3cjwkmdjmraqd7x4d6afafd67xtrdeammre4vvwz/providers/Microsoft.Storage/storageAccounts/versionvs7l3fj37x7r3omla","name":"versionvs7l3fj37x7r3omla","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-02T23:19:41.5709882Z","key2":"2021-12-02T23:19:41.5709882Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:19:41.5709882Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:19:41.5709882Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:19:41.4928817Z","primaryEndpoints":{"dfs":"https://versionvs7l3fj37x7r3omla.dfs.core.windows.net/","web":"https://versionvs7l3fj37x7r3omla.z2.web.core.windows.net/","blob":"https://versionvs7l3fj37x7r3omla.blob.core.windows.net/","queue":"https://versionvs7l3fj37x7r3omla.queue.core.windows.net/","table":"https://versionvs7l3fj37x7r3omla.table.core.windows.net/","file":"https://versionvs7l3fj37x7r3omla.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd/providers/Microsoft.Storage/storageAccounts/versionvsfin4nwuwcxndawj","name":"versionvsfin4nwuwcxndawj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:26:57.6350762Z","key2":"2021-09-07T02:26:57.6350762Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:26:57.5726321Z","primaryEndpoints":{"dfs":"https://versionvsfin4nwuwcxndawj.dfs.core.windows.net/","web":"https://versionvsfin4nwuwcxndawj.z2.web.core.windows.net/","blob":"https://versionvsfin4nwuwcxndawj.blob.core.windows.net/","queue":"https://versionvsfin4nwuwcxndawj.queue.core.windows.net/","table":"https://versionvsfin4nwuwcxndawj.table.core.windows.net/","file":"https://versionvsfin4nwuwcxndawj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestu2dumyf3mk7jyirvjmsg3w5s3sa7ke6ujncoaf3eo7bowo2bmxpjufa3ww5q66p2u2gb/providers/Microsoft.Storage/storageAccounts/versionwlfh4xbessj73brlz","name":"versionwlfh4xbessj73brlz","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-10T23:46:16.5584572Z","key2":"2022-03-10T23:46:16.5584572Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-10T23:46:16.5584572Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-10T23:46:16.5584572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-10T23:46:16.4803444Z","primaryEndpoints":{"dfs":"https://versionwlfh4xbessj73brlz.dfs.core.windows.net/","web":"https://versionwlfh4xbessj73brlz.z2.web.core.windows.net/","blob":"https://versionwlfh4xbessj73brlz.blob.core.windows.net/","queue":"https://versionwlfh4xbessj73brlz.queue.core.windows.net/","table":"https://versionwlfh4xbessj73brlz.table.core.windows.net/","file":"https://versionwlfh4xbessj73brlz.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsknognisu5ofc5kqx2s7pkyd44ypiqggvewtlb44ikbkje77zh4vo2y5c6alllygemol/providers/Microsoft.Storage/storageAccounts/versionwrfq6nydu5kpiyses","name":"versionwrfq6nydu5kpiyses","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-24T23:41:13.3087565Z","key2":"2022-03-24T23:41:13.3087565Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:41:13.3244129Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:41:13.3244129Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:41:13.1837898Z","primaryEndpoints":{"dfs":"https://versionwrfq6nydu5kpiyses.dfs.core.windows.net/","web":"https://versionwrfq6nydu5kpiyses.z2.web.core.windows.net/","blob":"https://versionwrfq6nydu5kpiyses.blob.core.windows.net/","queue":"https://versionwrfq6nydu5kpiyses.queue.core.windows.net/","table":"https://versionwrfq6nydu5kpiyses.table.core.windows.net/","file":"https://versionwrfq6nydu5kpiyses.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyvbbewdobz5vnqkoyumrkqbdufktrisug2ukkkvnirbc6frn2hxuvpe7weosgtfc4spk/providers/Microsoft.Storage/storageAccounts/versionymg2k5haow6be3wlh","name":"versionymg2k5haow6be3wlh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-08T05:20:27.5220722Z","key2":"2021-11-08T05:20:27.5220722Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-08T05:20:27.4439279Z","primaryEndpoints":{"dfs":"https://versionymg2k5haow6be3wlh.dfs.core.windows.net/","web":"https://versionymg2k5haow6be3wlh.z2.web.core.windows.net/","blob":"https://versionymg2k5haow6be3wlh.blob.core.windows.net/","queue":"https://versionymg2k5haow6be3wlh.queue.core.windows.net/","table":"https://versionymg2k5haow6be3wlh.table.core.windows.net/","file":"https://versionymg2k5haow6be3wlh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkngvostxvfzwz7hb2pyqpst4ekovxl4qehicnbufjmoug5injclokanwouejm77muega/providers/Microsoft.Storage/storageAccounts/versionyrdifxty6izovwb6i","name":"versionyrdifxty6izovwb6i","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:23:07.0385168Z","key2":"2021-09-07T02:23:07.0385168Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:23:06.9760160Z","primaryEndpoints":{"dfs":"https://versionyrdifxty6izovwb6i.dfs.core.windows.net/","web":"https://versionyrdifxty6izovwb6i.z2.web.core.windows.net/","blob":"https://versionyrdifxty6izovwb6i.blob.core.windows.net/","queue":"https://versionyrdifxty6izovwb6i.queue.core.windows.net/","table":"https://versionyrdifxty6izovwb6i.table.core.windows.net/","file":"https://versionyrdifxty6izovwb6i.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyuxvuaieuwauapmgpekzsx2djnxw7imdd44j7ye2q2bsscuowdlungp4mvqma3k4zdi3/providers/Microsoft.Storage/storageAccounts/versionzlxq5fbnucauv5vo7","name":"versionzlxq5fbnucauv5vo7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-25T03:40:01.2264205Z","key2":"2022-03-25T03:40:01.2264205Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-25T03:40:01.2264205Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-25T03:40:01.2264205Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-25T03:40:01.1169169Z","primaryEndpoints":{"dfs":"https://versionzlxq5fbnucauv5vo7.dfs.core.windows.net/","web":"https://versionzlxq5fbnucauv5vo7.z2.web.core.windows.net/","blob":"https://versionzlxq5fbnucauv5vo7.blob.core.windows.net/","queue":"https://versionzlxq5fbnucauv5vo7.queue.core.windows.net/","table":"https://versionzlxq5fbnucauv5vo7.table.core.windows.net/","file":"https://versionzlxq5fbnucauv5vo7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestglnitz57vqvc6itqwridomid64tyuijykukioisnaiyykplrweeehtxiwezec62slafz/providers/Microsoft.Storage/storageAccounts/versionztiuttcba4r3zu4ux","name":"versionztiuttcba4r3zu4ux","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-23T03:39:19.0719019Z","key2":"2022-02-23T03:39:19.0719019Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:39:19.0719019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:39:19.0719019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:39:18.9781248Z","primaryEndpoints":{"dfs":"https://versionztiuttcba4r3zu4ux.dfs.core.windows.net/","web":"https://versionztiuttcba4r3zu4ux.z2.web.core.windows.net/","blob":"https://versionztiuttcba4r3zu4ux.blob.core.windows.net/","queue":"https://versionztiuttcba4r3zu4ux.queue.core.windows.net/","table":"https://versionztiuttcba4r3zu4ux.table.core.windows.net/","file":"https://versionztiuttcba4r3zu4ux.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-06T07:56:33.4932788Z","key2":"2021-09-06T07:56:33.4932788Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-06T07:56:33.4151419Z","primaryEndpoints":{"dfs":"https://yssaeuap.dfs.core.windows.net/","web":"https://yssaeuap.z2.web.core.windows.net/","blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuap","name":"zhiyihuangsaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true},"keyCreationTime":{"key1":"2021-09-24T05:54:33.0930905Z","key2":"2021-09-24T05:54:33.0930905Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T05:54:33.0305911Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuap.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap.queue.core.windows.net/","table":"https://zhiyihuangsaeuap.table.core.windows.net/","file":"https://zhiyihuangsaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuap-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap-secondary.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuap-secondary.table.core.windows.net/"}}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adt-bulk-import-test/providers/Microsoft.Storage/storageAccounts/adtbulkimportstorage","name":"adtbulkimportstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-07T00:27:07.8961308Z","key2":"2022-07-07T00:27:07.8961308Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-07T00:27:07.8961308Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-07T00:27:07.8961308Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-07T00:27:07.7399077Z","primaryEndpoints":{"dfs":"https://adtbulkimportstorage.dfs.core.windows.net/","web":"https://adtbulkimportstorage.z13.web.core.windows.net/","blob":"https://adtbulkimportstorage.blob.core.windows.net/","queue":"https://adtbulkimportstorage.queue.core.windows.net/","table":"https://adtbulkimportstorage.table.core.windows.net/","file":"https://adtbulkimportstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adt-df-extension/providers/Microsoft.Storage/storageAccounts/adtdfextension","name":"adtdfextension","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-29T18:21:04.2046567Z","key2":"2022-07-29T18:21:04.2046567Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"table":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"queue":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T18:21:04.0640330Z","primaryEndpoints":{"dfs":"https://adtdfextension.dfs.core.windows.net/","web":"https://adtdfextension.z13.web.core.windows.net/","blob":"https://adtdfextension.blob.core.windows.net/","queue":"https://adtdfextension.queue.core.windows.net/","table":"https://adtdfextension.table.core.windows.net/","file":"https://adtdfextension.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://adtdfextension-secondary.dfs.core.windows.net/","web":"https://adtdfextension-secondary.z13.web.core.windows.net/","blob":"https://adtdfextension-secondary.blob.core.windows.net/","queue":"https://adtdfextension-secondary.queue.core.windows.net/","table":"https://adtdfextension-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Storage/storageAccounts/avagrawtest23","name":"avagrawtest23","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-02T22:04:35.9764387Z","key2":"2022-06-02T22:04:35.9764387Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-02T22:04:35.9764387Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-02T22:04:35.9764387Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-02T22:04:35.8201977Z","primaryEndpoints":{"dfs":"https://avagrawtest23.dfs.core.windows.net/","web":"https://avagrawtest23.z13.web.core.windows.net/","blob":"https://avagrawtest23.blob.core.windows.net/","queue":"https://avagrawtest23.queue.core.windows.net/","table":"https://avagrawtest23.table.core.windows.net/","file":"https://avagrawtest23.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://avagrawtest23-secondary.dfs.core.windows.net/","web":"https://avagrawtest23-secondary.z13.web.core.windows.net/","blob":"https://avagrawtest23-secondary.blob.core.windows.net/","queue":"https://avagrawtest23-secondary.queue.core.windows.net/","table":"https://avagrawtest23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/baltimorepp","name":"baltimorepp","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-20T18:04:57.3856063Z","key2":"2022-06-20T18:04:57.3856063Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T18:04:57.4012371Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T18:04:57.4012371Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-20T18:04:57.2449704Z","primaryEndpoints":{"dfs":"https://baltimorepp.dfs.core.windows.net/","web":"https://baltimorepp.z13.web.core.windows.net/","blob":"https://baltimorepp.blob.core.windows.net/","queue":"https://baltimorepp.queue.core.windows.net/","table":"https://baltimorepp.table.core.windows.net/","file":"https://baltimorepp.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://baltimorepp-secondary.dfs.core.windows.net/","web":"https://baltimorepp-secondary.z13.web.core.windows.net/","blob":"https://baltimorepp-secondary.blob.core.windows.net/","queue":"https://baltimorepp-secondary.queue.core.windows.net/","table":"https://baltimorepp-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/cs210032001c8853a3f","name":"cs210032001c8853a3f","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-09-06T19:47:02.5447463Z","key2":"2022-09-06T19:47:02.5447463Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T19:47:02.5447463Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T19:47:02.5447463Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-09-06T19:47:02.4041041Z","primaryEndpoints":{"dfs":"https://cs210032001c8853a3f.dfs.core.windows.net/","web":"https://cs210032001c8853a3f.z13.web.core.windows.net/","blob":"https://cs210032001c8853a3f.blob.core.windows.net/","queue":"https://cs210032001c8853a3f.queue.core.windows.net/","table":"https://cs210032001c8853a3f.table.core.windows.net/","file":"https://cs210032001c8853a3f.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/datahistorypp","name":"datahistorypp","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-19T17:10:36.1817423Z","key2":"2021-07-19T17:10:36.1817423Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-19T17:10:36.1817423Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-19T17:10:36.1817423Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-19T17:10:36.0879993Z","primaryEndpoints":{"dfs":"https://datahistorypp.dfs.core.windows.net/","web":"https://datahistorypp.z13.web.core.windows.net/","blob":"https://datahistorypp.blob.core.windows.net/","queue":"https://datahistorypp.queue.core.windows.net/","table":"https://datahistorypp.table.core.windows.net/","file":"https://datahistorypp.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://datahistorypp-secondary.dfs.core.windows.net/","web":"https://datahistorypp-secondary.z13.web.core.windows.net/","blob":"https://datahistorypp-secondary.blob.core.windows.net/","queue":"https://datahistorypp-secondary.queue.core.windows.net/","table":"https://datahistorypp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/hubstore11c8","name":"hubstore11c8","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"iot_resource":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5"},"properties":{"keyCreationTime":{"key1":"2022-10-18T17:37:23.2635736Z","key2":"2022-10-18T17:37:23.2635736Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T17:37:23.2635736Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T17:37:23.2635736Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-18T17:37:23.1072957Z","primaryEndpoints":{"dfs":"https://hubstore11c8.dfs.core.windows.net/","web":"https://hubstore11c8.z13.web.core.windows.net/","blob":"https://hubstore11c8.blob.core.windows.net/","queue":"https://hubstore11c8.queue.core.windows.net/","table":"https://hubstore11c8.table.core.windows.net/","file":"https://hubstore11c8.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://hubstore11c8-secondary.dfs.core.windows.net/","web":"https://hubstore11c8-secondary.z13.web.core.windows.net/","blob":"https://hubstore11c8-secondary.blob.core.windows.net/","queue":"https://hubstore11c8-secondary.queue.core.windows.net/","table":"https://hubstore11c8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Storage/storageAccounts/identitiestest","name":"identitiestest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-10-06T18:12:55.8361914Z","key2":"2022-10-06T18:12:55.8361914Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-06T18:12:55.8518461Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-06T18:12:55.8518461Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-06T18:12:55.6799956Z","primaryEndpoints":{"dfs":"https://identitiestest.dfs.core.windows.net/","web":"https://identitiestest.z13.web.core.windows.net/","blob":"https://identitiestest.blob.core.windows.net/","queue":"https://identitiestest.queue.core.windows.net/","table":"https://identitiestest.table.core.windows.net/","file":"https://identitiestest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://identitiestest-secondary.dfs.core.windows.net/","web":"https://identitiestest-secondary.z13.web.core.windows.net/","blob":"https://identitiestest-secondary.blob.core.windows.net/","queue":"https://identitiestest-secondary.queue.core.windows.net/","table":"https://identitiestest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iot-hub-extension-dogfood/providers/Microsoft.Storage/storageAccounts/iothubdfextension","name":"iothubdfextension","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-08T20:04:13.2606504Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-08T20:04:13.2606504Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-12-08T20:04:13.1512596Z","primaryEndpoints":{"dfs":"https://iothubdfextension.dfs.core.windows.net/","web":"https://iothubdfextension.z13.web.core.windows.net/","blob":"https://iothubdfextension.blob.core.windows.net/","queue":"https://iothubdfextension.queue.core.windows.net/","table":"https://iothubdfextension.table.core.windows.net/","file":"https://iothubdfextension.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://iothubdfextension-secondary.dfs.core.windows.net/","web":"https://iothubdfextension-secondary.z13.web.core.windows.net/","blob":"https://iothubdfextension-secondary.blob.core.windows.net/","queue":"https://iothubdfextension-secondary.queue.core.windows.net/","table":"https://iothubdfextension-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Storage/storageAccounts/jiacjutest","name":"jiacjutest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-16T00:00:42.1218840Z","key2":"2021-11-16T00:00:42.1218840Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-16T00:00:42.1218840Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-16T00:00:42.1218840Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-16T00:00:41.8874796Z","primaryEndpoints":{"blob":"https://jiacjutest.blob.core.windows.net/","queue":"https://jiacjutest.queue.core.windows.net/","table":"https://jiacjutest.table.core.windows.net/","file":"https://jiacjutest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avins-models-repo-test/providers/Microsoft.Storage/storageAccounts/modelsrepotest230291","name":"modelsrepotest230291","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-11T22:28:39.5386501Z","key2":"2022-05-11T22:28:39.5386501Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T22:28:39.5386501Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T22:28:39.5386501Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-11T22:28:39.3511797Z","primaryEndpoints":{"dfs":"https://modelsrepotest230291.dfs.core.windows.net/","web":"https://modelsrepotest230291.z13.web.core.windows.net/","blob":"https://modelsrepotest230291.blob.core.windows.net/","queue":"https://modelsrepotest230291.queue.core.windows.net/","table":"https://modelsrepotest230291.table.core.windows.net/","file":"https://modelsrepotest230291.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://modelsrepotest230291-secondary.dfs.core.windows.net/","web":"https://modelsrepotest230291-secondary.z13.web.core.windows.net/","blob":"https://modelsrepotest230291-secondary.blob.core.windows.net/","queue":"https://modelsrepotest230291-secondary.queue.core.windows.net/","table":"https://modelsrepotest230291-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/edge_billable_modules/providers/Microsoft.Storage/storageAccounts/privatepreviewbilledge","name":"privatepreviewbilledge","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-01-14T03:26:59.5305000Z","key2":"2022-01-14T03:26:59.5305000Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-14T03:26:59.5305000Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-14T03:26:59.5305000Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-14T03:26:59.3898773Z","primaryEndpoints":{"dfs":"https://privatepreviewbilledge.dfs.core.windows.net/","web":"https://privatepreviewbilledge.z13.web.core.windows.net/","blob":"https://privatepreviewbilledge.blob.core.windows.net/","queue":"https://privatepreviewbilledge.queue.core.windows.net/","table":"https://privatepreviewbilledge.table.core.windows.net/","file":"https://privatepreviewbilledge.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://privatepreviewbilledge-secondary.dfs.core.windows.net/","web":"https://privatepreviewbilledge-secondary.z13.web.core.windows.net/","blob":"https://privatepreviewbilledge-secondary.blob.core.windows.net/","queue":"https://privatepreviewbilledge-secondary.queue.core.windows.net/","table":"https://privatepreviewbilledge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Storage/storageAccounts/raharrideviceupdates","name":"raharrideviceupdates","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-10T21:56:24.8723906Z","key2":"2021-09-10T21:56:24.8723906Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T21:56:24.8723906Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T21:56:24.8723906Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-09-10T21:56:24.7786183Z","primaryEndpoints":{"blob":"https://raharrideviceupdates.blob.core.windows.net/","queue":"https://raharrideviceupdates.queue.core.windows.net/","table":"https://raharrideviceupdates.table.core.windows.net/","file":"https://raharrideviceupdates.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Storage/storageAccounts/ridotempdata","name":"ridotempdata","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-19T21:49:24.0720856Z","key2":"2021-04-19T21:49:24.0720856Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-19T21:49:24.0720856Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-19T21:49:24.0720856Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-19T21:49:23.9627356Z","primaryEndpoints":{"dfs":"https://ridotempdata.dfs.core.windows.net/","web":"https://ridotempdata.z13.web.core.windows.net/","blob":"https://ridotempdata.blob.core.windows.net/","queue":"https://ridotempdata.queue.core.windows.net/","table":"https://ridotempdata.table.core.windows.net/","file":"https://ridotempdata.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ridotempdata-secondary.dfs.core.windows.net/","web":"https://ridotempdata-secondary.z13.web.core.windows.net/","blob":"https://ridotempdata-secondary.blob.core.windows.net/","queue":"https://ridotempdata-secondary.queue.core.windows.net/","table":"https://ridotempdata-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslerstorage","name":"rkesslerstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-31T04:38:45.5328731Z","key2":"2021-08-31T04:38:45.5328731Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T04:38:45.5328731Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T04:38:45.5328731Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T04:38:45.4234853Z","primaryEndpoints":{"dfs":"https://rkesslerstorage.dfs.core.windows.net/","web":"https://rkesslerstorage.z13.web.core.windows.net/","blob":"https://rkesslerstorage.blob.core.windows.net/","queue":"https://rkesslerstorage.queue.core.windows.net/","table":"https://rkesslerstorage.table.core.windows.net/","file":"https://rkesslerstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://rkesslerstorage-secondary.dfs.core.windows.net/","web":"https://rkesslerstorage-secondary.z13.web.core.windows.net/","blob":"https://rkesslerstorage-secondary.blob.core.windows.net/","queue":"https://rkesslerstorage-secondary.queue.core.windows.net/","table":"https://rkesslerstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/vilitstore","name":"vilitstore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-23T20:09:36.4369560Z","key2":"2021-08-23T20:09:36.4369560Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T20:09:36.4369560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T20:09:36.4369560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T20:09:36.3275868Z","primaryEndpoints":{"dfs":"https://vilitstore.dfs.core.windows.net/","web":"https://vilitstore.z13.web.core.windows.net/","blob":"https://vilitstore.blob.core.windows.net/","queue":"https://vilitstore.queue.core.windows.net/","table":"https://vilitstore.table.core.windows.net/","file":"https://vilitstore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"Logging, + Metrics, 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.rglpb44c77ofpbl2aznugwkyurgp4bganvrh364eeuwcyvajlpagbqsbjb7rd7fukrf/providers/Microsoft.Storage/storageAccounts/clitest2tvnubwb6ky2be36j","name":"clitest2tvnubwb6ky2be36j","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:03:19.3282229Z","key2":"2022-10-14T20:03:19.3282229Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:03:19.3438435Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:03:19.3438435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:03:19.2344681Z","primaryEndpoints":{"blob":"https://clitest2tvnubwb6ky2be36j.blob.core.windows.net/","queue":"https://clitest2tvnubwb6ky2be36j.queue.core.windows.net/","table":"https://clitest2tvnubwb6ky2be36j.table.core.windows.net/","file":"https://clitest2tvnubwb6ky2be36j.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":{"keyCreationTime":{"key1":"2022-10-18T19:58:22.4741658Z","key2":"2022-10-18T19:58:22.4741658Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T19:58:22.4898427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T19:58:22.4898427Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T19:58:22.3647951Z","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.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Storage/storageAccounts/clitest5qkwfloklp7b2g7ng","name":"clitest5qkwfloklp7b2g7ng","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:04:21.9696331Z","key2":"2022-10-14T20:04:21.9696331Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:04:21.9852777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:04:21.9852777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:04:21.8758874Z","primaryEndpoints":{"blob":"https://clitest5qkwfloklp7b2g7ng.blob.core.windows.net/","queue":"https://clitest5qkwfloklp7b2g7ng.queue.core.windows.net/","table":"https://clitest5qkwfloklp7b2g7ng.table.core.windows.net/","file":"https://clitest5qkwfloklp7b2g7ng.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.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Storage/storageAccounts/clitesteklqzuyizgeeenn75","name":"clitesteklqzuyizgeeenn75","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:48:08.1733907Z","key2":"2022-10-18T18:48:08.1733907Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.1733907Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.1733907Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:48:08.0640087Z","primaryEndpoints":{"blob":"https://clitesteklqzuyizgeeenn75.blob.core.windows.net/","queue":"https://clitesteklqzuyizgeeenn75.queue.core.windows.net/","table":"https://clitesteklqzuyizgeeenn75.table.core.windows.net/","file":"https://clitesteklqzuyizgeeenn75.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.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Storage/storageAccounts/clitestigva6doxivhvo5mqm","name":"clitestigva6doxivhvo5mqm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:30:07.9546953Z","key2":"2022-10-18T18:30:07.9546953Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:07.9546953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:07.9546953Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:30:07.8453184Z","primaryEndpoints":{"blob":"https://clitestigva6doxivhvo5mqm.blob.core.windows.net/","queue":"https://clitestigva6doxivhvo5mqm.queue.core.windows.net/","table":"https://clitestigva6doxivhvo5mqm.table.core.windows.net/","file":"https://clitestigva6doxivhvo5mqm.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.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Storage/storageAccounts/clitestmmxqd6sx3bmeg75oa","name":"clitestmmxqd6sx3bmeg75oa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:31:14.4418256Z","key2":"2022-10-14T20:31:14.4418256Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.4574466Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.4574466Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:31:14.3324427Z","primaryEndpoints":{"blob":"https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/","queue":"https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/","table":"https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/","file":"https://clitestmmxqd6sx3bmeg75oa.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.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Storage/storageAccounts/clitestwbufuo762kwfy7o53","name":"clitestwbufuo762kwfy7o53","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:48:08.7846725Z","key2":"2022-10-18T18:48:08.7846725Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.7983950Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.7983950Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:48:08.6577638Z","primaryEndpoints":{"blob":"https://clitestwbufuo762kwfy7o53.blob.core.windows.net/","queue":"https://clitestwbufuo762kwfy7o53.queue.core.windows.net/","table":"https://clitestwbufuo762kwfy7o53.table.core.windows.net/","file":"https://clitestwbufuo762kwfy7o53.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.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Storage/storageAccounts/clitestx5vvad2p4lj422dtt","name":"clitestx5vvad2p4lj422dtt","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:31:14.2074274Z","key2":"2022-10-14T20:31:14.2074274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.2230642Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.2230642Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:31:14.0981110Z","primaryEndpoints":{"blob":"https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/","queue":"https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/","table":"https://clitestx5vvad2p4lj422dtt.table.core.windows.net/","file":"https://clitestx5vvad2p4lj422dtt.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.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Storage/storageAccounts/clitestxr6xomz7iii3qglyv","name":"clitestxr6xomz7iii3qglyv","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:58:57.6340465Z","key2":"2022-10-14T20:58:57.6340465Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:58:57.6340465Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:58:57.6340465Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:58:57.5246374Z","primaryEndpoints":{"blob":"https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/","queue":"https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/","table":"https://clitestxr6xomz7iii3qglyv.table.core.windows.net/","file":"https://clitestxr6xomz7iii3qglyv.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.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Storage/storageAccounts/clitestzzaeirfu6bbwfj4ja","name":"clitestzzaeirfu6bbwfj4ja","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:30:08.1422082Z","key2":"2022-10-18T18:30:08.1422082Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:08.1578272Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:08.1578272Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:30:08.0484744Z","primaryEndpoints":{"blob":"https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/","queue":"https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/","table":"https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/","file":"https://clitestzzaeirfu6bbwfj4ja.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/cs4100300009acbc8c3","name":"cs4100300009acbc8c3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-09T18:44:35.6761185Z","key2":"2022-02-09T18:44:35.6761185Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-09T18:44:35.6761185Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-09T18:44:35.6761185Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-09T18:44:35.5823418Z","primaryEndpoints":{"dfs":"https://cs4100300009acbc8c3.dfs.core.windows.net/","web":"https://cs4100300009acbc8c3.z22.web.core.windows.net/","blob":"https://cs4100300009acbc8c3.blob.core.windows.net/","queue":"https://cs4100300009acbc8c3.queue.core.windows.net/","table":"https://cs4100300009acbc8c3.table.core.windows.net/","file":"https://cs4100300009acbc8c3.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/cs41003200066a7dd52","name":"cs41003200066a7dd52","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-18T17:36:45.6533903Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-18T17:36:45.6533903Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-18T17:36:45.5752594Z","primaryEndpoints":{"dfs":"https://cs41003200066a7dd52.dfs.core.windows.net/","web":"https://cs41003200066a7dd52.z22.web.core.windows.net/","blob":"https://cs41003200066a7dd52.blob.core.windows.net/","queue":"https://cs41003200066a7dd52.queue.core.windows.net/","table":"https://cs41003200066a7dd52.table.core.windows.net/","file":"https://cs41003200066a7dd52.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/cs41003200200848f41","name":"cs41003200200848f41","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-06-08T18:15:57.8153697Z","key2":"2022-06-08T18:15:57.8153697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-08T18:15:57.8153697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-08T18:15:57.8153697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-08T18:15:57.7216712Z","primaryEndpoints":{"dfs":"https://cs41003200200848f41.dfs.core.windows.net/","web":"https://cs41003200200848f41.z22.web.core.windows.net/","blob":"https://cs41003200200848f41.blob.core.windows.net/","queue":"https://cs41003200200848f41.queue.core.windows.net/","table":"https://cs41003200200848f41.table.core.windows.net/","file":"https://cs41003200200848f41.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/cs410033fff96467dc6","name":"cs410033fff96467dc6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-12-13T17:13:30.0923471Z","key2":"2021-12-13T17:13:30.0923471Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-13T17:13:30.0923471Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-13T17:13:30.0923471Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-13T17:13:29.9986006Z","primaryEndpoints":{"dfs":"https://cs410033fff96467dc6.dfs.core.windows.net/","web":"https://cs410033fff96467dc6.z22.web.core.windows.net/","blob":"https://cs410033fff96467dc6.blob.core.windows.net/","queue":"https://cs410033fff96467dc6.queue.core.windows.net/","table":"https://cs410033fff96467dc6.table.core.windows.net/","file":"https://cs410033fff96467dc6.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/cs410037ffe801b4af4","name":"cs410037ffe801b4af4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T12:02:15.3272698Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T12:02:15.3272698Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-20T12:02:15.2647454Z","primaryEndpoints":{"dfs":"https://cs410037ffe801b4af4.dfs.core.windows.net/","web":"https://cs410037ffe801b4af4.z22.web.core.windows.net/","blob":"https://cs410037ffe801b4af4.blob.core.windows.net/","queue":"https://cs410037ffe801b4af4.queue.core.windows.net/","table":"https://cs410037ffe801b4af4.table.core.windows.net/","file":"https://cs410037ffe801b4af4.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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iotqrcodes/providers/Microsoft.Storage/storageAccounts/iotqrcodes","name":"iotqrcodes","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-29T18:48:51.7888406Z","key2":"2021-07-29T18:48:51.7888406Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T18:48:51.7888406Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T18:48:51.7888406Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-29T18:48:51.7263422Z","primaryEndpoints":{"dfs":"https://iotqrcodes.dfs.core.windows.net/","web":"https://iotqrcodes.z22.web.core.windows.net/","blob":"https://iotqrcodes.blob.core.windows.net/","queue":"https://iotqrcodes.queue.core.windows.net/","table":"https://iotqrcodes.table.core.windows.net/","file":"https://iotqrcodes.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-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320004055e7df","name":"cs7100320004055e7df","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-08-25T17:36:35.3733486Z","key2":"2022-08-25T17:36:35.3733486Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T17:36:35.7639780Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T17:36:35.7639780Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-25T17:36:35.2795833Z","primaryEndpoints":{"dfs":"https://cs7100320004055e7df.dfs.core.windows.net/","web":"https://cs7100320004055e7df.z21.web.core.windows.net/","blob":"https://cs7100320004055e7df.blob.core.windows.net/","queue":"https://cs7100320004055e7df.queue.core.windows.net/","table":"https://cs7100320004055e7df.table.core.windows.net/","file":"https://cs7100320004055e7df.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/iliesrgbf29","name":"iliesrgbf29","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-21T18:06:13.8315498Z","key2":"2022-06-21T18:06:13.8315498Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-21T18:06:13.8315498Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-21T18:06:13.8315498Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-21T18:06:13.7379857Z","primaryEndpoints":{"blob":"https://iliesrgbf29.blob.core.windows.net/","queue":"https://iliesrgbf29.queue.core.windows.net/","table":"https://iliesrgbf29.table.core.windows.net/","file":"https://iliesrgbf29.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/vilit8722","name":"vilit8722","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-11T18:59:07.4717431Z","key2":"2022-05-11T18:59:07.4717431Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T18:59:07.4717431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T18:59:07.4717431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-11T18:59:07.3623120Z","primaryEndpoints":{"blob":"https://vilit8722.blob.core.windows.net/","queue":"https://vilit8722.queue.core.windows.net/","table":"https://vilit8722.table.core.windows.net/","file":"https://vilit8722.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Storage/storageAccounts/vilitehtoazmon8c23","name":"vilitehtoazmon8c23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T17:19:46.9319689Z","key2":"2022-03-31T17:19:46.9319689Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T17:19:46.9319689Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T17:19:46.9319689Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-31T17:19:46.8225518Z","primaryEndpoints":{"blob":"https://vilitehtoazmon8c23.blob.core.windows.net/","queue":"https://vilitehtoazmon8c23.queue.core.windows.net/","table":"https://vilitehtoazmon8c23.table.core.windows.net/","file":"https://vilitehtoazmon8c23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dt_test/providers/Microsoft.Storage/storageAccounts/wqklkwjkjwejkwe","name":"wqklkwjkjwejkwe","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-03-16T15:47:52.5520552Z","key2":"2021-03-16T15:47:52.5520552Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-16T15:47:52.5520552Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-16T15:47:52.5520552Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-16T15:47:52.4739156Z","primaryEndpoints":{"dfs":"https://wqklkwjkjwejkwe.dfs.core.windows.net/","web":"https://wqklkwjkjwejkwe.z19.web.core.windows.net/","blob":"https://wqklkwjkjwejkwe.blob.core.windows.net/","queue":"https://wqklkwjkjwejkwe.queue.core.windows.net/","table":"https://wqklkwjkjwejkwe.table.core.windows.net/","file":"https://wqklkwjkjwejkwe.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Storage/storageAccounts/aducli","name":"aducli","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"dnsEndpointType":"Standard","allowedCopyScope":"AAD","defaultToOAuthAuthentication":true,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-21T18:11:40.7795178Z","key2":"2022-07-21T18:11:40.7795178Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T18:11:40.7951256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T18:11:40.7951256Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-21T18:11:40.6857415Z","primaryEndpoints":{"dfs":"https://aducli.dfs.core.windows.net/","web":"https://aducli.z5.web.core.windows.net/","blob":"https://aducli.blob.core.windows.net/","queue":"https://aducli.queue.core.windows.net/","table":"https://aducli.table.core.windows.net/","file":"https://aducli.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://aducli-secondary.dfs.core.windows.net/","web":"https://aducli-secondary.z5.web.core.windows.net/","blob":"https://aducli-secondary.blob.core.windows.net/","queue":"https://aducli-secondary.queue.core.windows.net/","table":"https://aducli-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Storage/storageAccounts/azcliintteststorage","name":"azcliintteststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-18T00:47:50.5253938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-18T00:47:50.5253938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-18T00:47:50.4473020Z","primaryEndpoints":{"dfs":"https://azcliintteststorage.dfs.core.windows.net/","web":"https://azcliintteststorage.z5.web.core.windows.net/","blob":"https://azcliintteststorage.blob.core.windows.net/","queue":"https://azcliintteststorage.queue.core.windows.net/","table":"https://azcliintteststorage.table.core.windows.net/","file":"https://azcliintteststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azcliintteststorage-secondary.dfs.core.windows.net/","web":"https://azcliintteststorage-secondary.z5.web.core.windows.net/","blob":"https://azcliintteststorage-secondary.blob.core.windows.net/","queue":"https://azcliintteststorage-secondary.queue.core.windows.net/","table":"https://azcliintteststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventualC/providers/Microsoft.Storage/storageAccounts/dmrstore","name":"dmrstore","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T01:26:42.2484427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T01:26:42.2484427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-20T01:26:42.1546871Z","primaryEndpoints":{"dfs":"https://dmrstore.dfs.core.windows.net/","web":"https://dmrstore.z5.web.core.windows.net/","blob":"https://dmrstore.blob.core.windows.net/","queue":"https://dmrstore.queue.core.windows.net/","table":"https://dmrstore.table.core.windows.net/","file":"https://dmrstore.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rkiotstorage2","name":"rkiotstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T23:15:17.7346844Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T23:15:17.7346844Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-23T23:15:17.6409336Z","primaryEndpoints":{"dfs":"https://rkiotstorage2.dfs.core.windows.net/","web":"https://rkiotstorage2.z5.web.core.windows.net/","blob":"https://rkiotstorage2.blob.core.windows.net/","queue":"https://rkiotstorage2.queue.core.windows.net/","table":"https://rkiotstorage2.table.core.windows.net/","file":"https://rkiotstorage2.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"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":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"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"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rktsistorage","name":"rktsistorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-05T17:19:34.7436222Z","key2":"2021-04-05T17:19:34.7436222Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-05T17:19:34.7592460Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-05T17:19:34.7592460Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-05T17:19:34.6498962Z","primaryEndpoints":{"dfs":"https://rktsistorage.dfs.core.windows.net/","web":"https://rktsistorage.z5.web.core.windows.net/","blob":"https://rktsistorage.blob.core.windows.net/","queue":"https://rktsistorage.queue.core.windows.net/","table":"https://rktsistorage.table.core.windows.net/","file":"https://rktsistorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/storageaccountrkiot8c13","name":"storageaccountrkiot8c13","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-16T22:15:10.5759611Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-16T22:15:10.5759611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-09-16T22:15:10.4821881Z","primaryEndpoints":{"blob":"https://storageaccountrkiot8c13.blob.core.windows.net/","queue":"https://storageaccountrkiot8c13.queue.core.windows.net/","table":"https://storageaccountrkiot8c13.table.core.windows.net/","file":"https://storageaccountrkiot8c13.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/storageaccountrkiotb9e5","name":"storageaccountrkiotb9e5","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T19:30:15.3804746Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T19:30:15.3804746Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-02-23T19:30:15.3023373Z","primaryEndpoints":{"blob":"https://storageaccountrkiotb9e5.blob.core.windows.net/","queue":"https://storageaccountrkiotb9e5.queue.core.windows.net/","table":"https://storageaccountrkiotb9e5.table.core.windows.net/","file":"https://storageaccountrkiotb9e5.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/testrevocation","name":"testrevocation","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-10T19:00:22.0329798Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-10T19:00:22.0329798Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-10T19:00:21.9705172Z","primaryEndpoints":{"dfs":"https://testrevocation.dfs.core.windows.net/","web":"https://testrevocation.z5.web.core.windows.net/","blob":"https://testrevocation.blob.core.windows.net/","queue":"https://testrevocation.queue.core.windows.net/","table":"https://testrevocation.table.core.windows.net/","file":"https://testrevocation.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testrevocation-secondary.dfs.core.windows.net/","web":"https://testrevocation-secondary.z5.web.core.windows.net/","blob":"https://testrevocation-secondary.blob.core.windows.net/","queue":"https://testrevocation-secondary.queue.core.windows.net/","table":"https://testrevocation-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslereasteaup2storage","name":"rkesslereasteaup2storage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-28T16:38:28.5298643Z","key2":"2021-10-28T16:38:28.5298643Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T16:38:28.5298643Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T16:38:28.5298643Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T16:38:28.4517312Z","primaryEndpoints":{"dfs":"https://rkesslereasteaup2storage.dfs.core.windows.net/","web":"https://rkesslereasteaup2storage.z3.web.core.windows.net/","blob":"https://rkesslereasteaup2storage.blob.core.windows.net/","queue":"https://rkesslereasteaup2storage.queue.core.windows.net/","table":"https://rkesslereasteaup2storage.table.core.windows.net/","file":"https://rkesslereasteaup2storage.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://rkesslereasteaup2storage-secondary.dfs.core.windows.net/","web":"https://rkesslereasteaup2storage-secondary.z3.web.core.windows.net/","blob":"https://rkesslereasteaup2storage-secondary.blob.core.windows.net/","queue":"https://rkesslereasteaup2storage-secondary.queue.core.windows.net/","table":"https://rkesslereasteaup2storage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslerstoragev1","name":"rkesslerstoragev1","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-31T15:39:41.4036635Z","key2":"2021-08-31T15:39:41.4036635Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T15:39:41.4193120Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T15:39:41.4193120Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-31T15:39:41.3411838Z","primaryEndpoints":{"blob":"https://rkesslerstoragev1.blob.core.windows.net/","queue":"https://rkesslerstoragev1.queue.core.windows.net/","table":"https://rkesslerstoragev1.table.core.windows.net/","file":"https://rkesslerstoragev1.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://rkesslerstoragev1-secondary.blob.core.windows.net/","queue":"https://rkesslerstoragev1-secondary.queue.core.windows.net/","table":"https://rkesslerstoragev1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Storage/storageAccounts/jeremyjonesstorage1","name":"jeremyjonesstorage1","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-05-31T20:02:55.4385674Z","key2":"2022-05-31T20:02:55.4385674Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-31T20:02:55.4385674Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-31T20:02:55.4385674Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-31T20:02:55.3760966Z","primaryEndpoints":{"dfs":"https://jeremyjonesstorage1.dfs.core.windows.net/","web":"https://jeremyjonesstorage1.z2.web.core.windows.net/","blob":"https://jeremyjonesstorage1.blob.core.windows.net/","queue":"https://jeremyjonesstorage1.queue.core.windows.net/","table":"https://jeremyjonesstorage1.table.core.windows.net/","file":"https://jeremyjonesstorage1.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '516557' + - '79996' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:41:49 GMT + - Tue, 18 Oct 2022 19:58:42 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff x-ms-original-request-ids: - - 23b1b031-a1e7-4d76-9d91-b0c14c6f164c - - ff1d6fdf-33cf-4e1a-845a-abe07a754725 - - 878ce2f8-74e9-4116-9fb7-9ab8b17c6b65 - - bc3603ab-fd03-44a7-8462-1facb478787d - - 12bfabd1-07a4-40ee-8cf4-3d0e4a8f2456 - - fd33fb0c-ee11-4042-bd53-b2daece54201 - - dd38c062-2b0c-401a-9c34-ebd10c7f3cf0 - - 627419ce-4e5d-427b-b143-89096e080cd7 - - 362e6977-fcd0-4d17-83bd-59037d867a29 + - 1bcf7b01-60ed-47d4-bebd-ea0b9cb152d5 + - d7e35847-ed69-4d4c-a5da-8e64e5ebbe3f + - a2615cca-2f9c-42c9-acfb-9cb7047fb107 + - 3008f6c8-4c94-4488-986b-4f6695480b70 + - a2ff02eb-bce3-45d3-bb32-51277475cd39 + - cd9ffd40-f5c2-48b4-ab5d-646f60fed7f1 + - 311b877d-0249-420d-906c-c800d90956de + - 7b2cceb5-8692-488c-9c5c-a52130045554 status: code: 200 message: OK @@ -70,13 +67,12 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2022-05-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-08-31T06:41:28.2342174Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-08-31T06:41:28.2342174Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-10-18T19:58:22.4741658Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-10-18T19:58:22.4741658Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -85,7 +81,7 @@ interactions: content-type: - application/json date: - - Wed, 31 Aug 2022 06:41:50 GMT + - Tue, 18 Oct 2022 19:58:42 GMT expires: - '-1' pragma: @@ -121,10 +117,9 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - AZURECLI/2.39.0 azsdk-python-storage-blob/12.12.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-storage-blob/12.12.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) x-ms-date: - - Wed, 31 Aug 2022 06:41:51 GMT + - Tue, 18 Oct 2022 19:58:43 GMT x-ms-version: - '2021-06-08' method: PUT @@ -136,11 +131,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:41:50 GMT + - Tue, 18 Oct 2022 19:58:42 GMT etag: - - '"0x8DA8B1BE2D5A548"' + - '"0x8DAB143292A8607"' last-modified: - - Wed, 31 Aug 2022 06:41:51 GMT + - Tue, 18 Oct 2022 19:58:43 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -164,13 +159,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2022-05-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-08-31T06:41:28.2342174Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-08-31T06:41:28.2342174Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-10-18T19:58:22.4741658Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-10-18T19:58:22.4741658Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -179,7 +173,7 @@ interactions: content-type: - application/json date: - - Wed, 31 Aug 2022 06:41:50 GMT + - Tue, 18 Oct 2022 19:58:43 GMT expires: - '-1' pragma: @@ -213,13 +207,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2022-05-01 response: body: - string: '{"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":{"keyCreationTime":{"key1":"2022-08-31T06:41:28.2342174Z","key2":"2022-08-31T06:41:28.2342174Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T06:41:28.2498116Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T06:41:28.2498116Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-31T06:41:28.1248234Z","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"}}' + string: '{"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":{"keyCreationTime":{"key1":"2022-10-18T19:58:22.4741658Z","key2":"2022-10-18T19:58:22.4741658Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T19:58:22.4898427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T19:58:22.4898427Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T19:58:22.3647951Z","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"}}' headers: cache-control: - no-cache @@ -228,7 +221,7 @@ interactions: content-type: - application/json date: - - Wed, 31 Aug 2022 06:41:50 GMT + - Tue, 18 Oct 2022 19:58:43 GMT expires: - '-1' pragma: @@ -260,13 +253,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-08-31T06:41:25Z"},"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":"2022-10-18T19:58:19Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -275,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:41:50 GMT + - Tue, 18 Oct 2022 19:58:44 GMT expires: - '-1' pragma: @@ -307,13 +299,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004?api-version=2022-01-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004","name":"hub-user-identity000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"3f35c0c0-b8f2-404b-b792-7e556f193e54","clientId":"4f710ce0-bfdc-4a2c-a73f-b4855ed0de3d"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004","name":"hub-user-identity000004","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"ff076de9-5b45-4497-b688-e8c356df17fc","clientId":"a25e6f36-d255-496f-9e2a-91a69425f4b8"}}' headers: cache-control: - no-cache @@ -322,7 +313,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:41:52 GMT + - Tue, 18 Oct 2022 19:58:45 GMT expires: - '-1' location: @@ -352,13 +343,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-08-31T06:41:25Z"},"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":"2022-10-18T19:58:19Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -367,7 +357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:41:53 GMT + - Tue, 18 Oct 2022 19:58:45 GMT expires: - '-1' pragma: @@ -406,16 +396,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","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":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmY2YTFlOTktMmEwYS00YTg4LThkMGYtNTBhNjlkNjllM2U2O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjA1MGM5NGItOTNjMi00NGJmLWExODItNmZjMzNlODBlYmI4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -423,7 +412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:41:57 GMT + - Tue, 18 Oct 2022 19:58:49 GMT expires: - '-1' pragma: @@ -453,10 +442,147 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjA1MGM5NGItOTNjMi00NGJmLWExODItNmZjMzNlODBlYmI4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjA1MGM5NGItOTNjMi00NGJmLWExODItNmZjMzNlODBlYmI4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:59:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjA1MGM5NGItOTNjMi00NGJmLWExODItNmZjMzNlODBlYmI4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:59: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmY2YTFlOTktMmEwYS00YTg4LThkMGYtNTBhNjlkNjllM2U2O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjA1MGM5NGItOTNjMi00NGJmLWExODItNmZjMzNlODBlYmI4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -468,7 +594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:42:27 GMT + - Tue, 18 Oct 2022 20:00:20 GMT expires: - '-1' pragma: @@ -500,10 +626,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmY2YTFlOTktMmEwYS00YTg4LThkMGYtNTBhNjlkNjllM2U2O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjA1MGM5NGItOTNjMi00NGJmLWExODItNmZjMzNlODBlYmI4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -515,7 +640,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:42:56 GMT + - Tue, 18 Oct 2022 20:00:50 GMT expires: - '-1' pragma: @@ -547,10 +672,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmY2YTFlOTktMmEwYS00YTg4LThkMGYtNTBhNjlkNjllM2U2O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjA1MGM5NGItOTNjMi00NGJmLWExODItNmZjMzNlODBlYmI4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -562,7 +686,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:43:26 GMT + - Tue, 18 Oct 2022 20:01:19 GMT expires: - '-1' pragma: @@ -594,10 +718,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmY2YTFlOTktMmEwYS00YTg4LThkMGYtNTBhNjlkNjllM2U2O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjA1MGM5NGItOTNjMi00NGJmLWExODItNmZjMzNlODBlYmI4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -609,7 +732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:43:57 GMT + - Tue, 18 Oct 2022 20:01:49 GMT expires: - '-1' pragma: @@ -641,10 +764,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmY2YTFlOTktMmEwYS00YTg4LThkMGYtNTBhNjlkNjllM2U2O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjA1MGM5NGItOTNjMi00NGJmLWExODItNmZjMzNlODBlYmI4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -656,7 +778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:44:27 GMT + - Tue, 18 Oct 2022 20:02:20 GMT expires: - '-1' pragma: @@ -688,23 +810,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Swyw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8/98=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1672' + - '1700' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:44:28 GMT + - Tue, 18 Oct 2022 20:02:21 GMT expires: - '-1' pragma: @@ -736,8 +857,7 @@ interactions: ParameterSetName: - -n -g --fc --fcs --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -749,7 +869,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:44:28 GMT + - Tue, 18 Oct 2022 20:02:21 GMT expires: - '-1' pragma: @@ -779,10 +899,9 @@ interactions: ParameterSetName: - -n -g --fc --fcs --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -795,7 +914,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:44:28 GMT + - Tue, 18 Oct 2022 20:02:22 GMT expires: - '-1' pragma: @@ -829,23 +948,22 @@ interactions: ParameterSetName: - -n -g --fc --fcs --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Swyw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8/98=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1672' + - '1700' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:44:29 GMT + - Tue, 18 Oct 2022 20:02:22 GMT expires: - '-1' pragma: @@ -877,8 +995,7 @@ interactions: ParameterSetName: - -n -g --fc --fcs --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -890,7 +1007,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:44:29 GMT + - Tue, 18 Oct 2022 20:02:23 GMT expires: - '-1' pragma: @@ -920,10 +1037,9 @@ interactions: ParameterSetName: - -n -g --fc --fcs --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -936,7 +1052,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:44:29 GMT + - Tue, 18 Oct 2022 20:02:24 GMT expires: - '-1' pragma: @@ -952,7 +1068,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -970,23 +1086,22 @@ interactions: ParameterSetName: - -n -g --fc --fcs --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Swyw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8/98=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1672' + - '1700' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:44:30 GMT + - Tue, 18 Oct 2022 20:02:25 GMT expires: - '-1' pragma: @@ -1018,8 +1133,7 @@ interactions: ParameterSetName: - -n -g --fc --fcs --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -1031,7 +1145,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:44:30 GMT + - Tue, 18 Oct 2022 20:02:24 GMT expires: - '-1' pragma: @@ -1061,10 +1175,9 @@ interactions: ParameterSetName: - -n -g --fc --fcs --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -1077,7 +1190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:44:31 GMT + - Tue, 18 Oct 2022 20:02:25 GMT expires: - '-1' pragma: @@ -1111,23 +1224,22 @@ interactions: ParameterSetName: - -n -g --fc --fcs --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Swyw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8/98=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1672' + - '1700' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:44:32 GMT + - Tue, 18 Oct 2022 20:02:26 GMT expires: - '-1' pragma: @@ -1159,8 +1271,7 @@ interactions: ParameterSetName: - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -1172,7 +1283,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:44:32 GMT + - Tue, 18 Oct 2022 20:02:27 GMT expires: - '-1' pragma: @@ -1202,10 +1313,9 @@ interactions: ParameterSetName: - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -1218,7 +1328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:44:33 GMT + - Tue, 18 Oct 2022 20:02:27 GMT expires: - '-1' pragma: @@ -1252,23 +1362,22 @@ interactions: ParameterSetName: - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Swyw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8/98=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1672' + - '1700' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:44:34 GMT + - Tue, 18 Oct 2022 20:02:28 GMT expires: - '-1' pragma: @@ -1287,12 +1396,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/Swyw=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8/98=", "properties": {"allowedFqdnList": [], "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": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": false, "cloudToDevice": {"maxDeliveryCount": 10, "defaultTtlAsIso8601": "PT1H", @@ -1309,29 +1418,28 @@ interactions: Connection: - keep-alive Content-Length: - - '919' + - '949' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/Swyw=''}' + - '{''IF-MATCH'': ''AAAADHO8/98=''}' ParameterSetName: - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Swyw=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-62281a52-541a-4523-b00c-c33572cb4931-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-4e7523f7-6586-4730-b658-88e781ce0409-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8/98=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-d82cf9d6-6309-43ac-9c60-e26751c9964d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-eb7700d2-9f20-47bc-b5e7-3b5f5d28e3b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTRmMjE5OGItNzg4My00MTVmLWI2OTMtNmFjODVjYmJmN2U0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfN2YwZWY3N2QtYmJiMi00M2U1LWI1ZDEtNzI1N2Y2NGU2MzFkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -1339,7 +1447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:44:37 GMT + - Tue, 18 Oct 2022 20:02:31 GMT expires: - '-1' pragma: @@ -1369,10 +1477,55 @@ interactions: ParameterSetName: - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfN2YwZWY3N2QtYmJiMi00M2U1LWI1ZDEtNzI1N2Y2NGU2MzFkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 20:02:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n -g --set + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTRmMjE5OGItNzg4My00MTVmLWI2OTMtNmFjODVjYmJmN2U0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfN2YwZWY3N2QtYmJiMi00M2U1LWI1ZDEtNzI1N2Y2NGU2MzFkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1384,7 +1537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:07 GMT + - Tue, 18 Oct 2022 20:03:01 GMT expires: - '-1' pragma: @@ -1416,23 +1569,22 @@ interactions: ParameterSetName: - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sxao=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9A8Q=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1594' + - '1622' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:07 GMT + - Tue, 18 Oct 2022 20:03:03 GMT expires: - '-1' pragma: @@ -1464,8 +1616,7 @@ interactions: ParameterSetName: - -n -g --fst User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -1477,7 +1628,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:45:08 GMT + - Tue, 18 Oct 2022 20:03:03 GMT expires: - '-1' pragma: @@ -1507,10 +1658,9 @@ interactions: ParameterSetName: - -n -g --fst User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -1523,7 +1673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:08 GMT + - Tue, 18 Oct 2022 20:03:04 GMT expires: - '-1' pragma: @@ -1539,7 +1689,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1557,23 +1707,22 @@ interactions: ParameterSetName: - -n -g --fst User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sxao=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9A8Q=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1594' + - '1622' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:09 GMT + - Tue, 18 Oct 2022 20:03:05 GMT expires: - '-1' pragma: @@ -1605,8 +1754,7 @@ interactions: ParameterSetName: - -n -g --fst --fc User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -1618,7 +1766,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:45:09 GMT + - Tue, 18 Oct 2022 20:03:05 GMT expires: - '-1' pragma: @@ -1648,10 +1796,9 @@ interactions: ParameterSetName: - -n -g --fst --fc User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -1664,7 +1811,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:09 GMT + - Tue, 18 Oct 2022 20:03:06 GMT expires: - '-1' pragma: @@ -1698,23 +1845,22 @@ interactions: ParameterSetName: - -n -g --fst --fc User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sxao=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9A8Q=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1594' + - '1622' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:10 GMT + - Tue, 18 Oct 2022 20:03:06 GMT expires: - '-1' pragma: @@ -1746,8 +1892,7 @@ interactions: ParameterSetName: - -n -g --ct User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -1759,7 +1904,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:45:10 GMT + - Tue, 18 Oct 2022 20:03:07 GMT expires: - '-1' pragma: @@ -1789,10 +1934,9 @@ interactions: ParameterSetName: - -n -g --ct User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -1805,7 +1949,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:11 GMT + - Tue, 18 Oct 2022 20:03:08 GMT expires: - '-1' pragma: @@ -1839,23 +1983,22 @@ interactions: ParameterSetName: - -n -g --ct User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sxao=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9A8Q=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1594' + - '1622' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:12 GMT + - Tue, 18 Oct 2022 20:03:09 GMT expires: - '-1' pragma: @@ -1874,12 +2017,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/Sxao=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO9A8Q=", "properties": {"allowedFqdnList": [], "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": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": false, "cloudToDevice": {"maxDeliveryCount": 10, "defaultTtlAsIso8601": "PT13H", @@ -1896,29 +2039,28 @@ interactions: Connection: - keep-alive Content-Length: - - '920' + - '950' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/Sxao=''}' + - '{''IF-MATCH'': ''AAAADHO9A8Q=''}' ParameterSetName: - -n -g --ct User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sxao=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-62281a52-541a-4523-b00c-c33572cb4931-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-4e7523f7-6586-4730-b658-88e781ce0409-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9A8Q=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-d82cf9d6-6309-43ac-9c60-e26751c9964d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-eb7700d2-9f20-47bc-b5e7-3b5f5d28e3b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOWE4ZmI0ZWUtNjk2Yy00ZDM4LWI5YzctMGUyNjUyNWUwZjJkO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDUwNTViZWEtMGRjOS00MTAzLWJlYTgtOGQ3N2I4NTRhNWU3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -1926,7 +2068,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:15 GMT + - Tue, 18 Oct 2022 20:03:12 GMT expires: - '-1' pragma: @@ -1956,10 +2098,55 @@ interactions: ParameterSetName: - -n -g --ct User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDUwNTViZWEtMGRjOS00MTAzLWJlYTgtOGQ3N2I4NTRhNWU3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 20:03: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n -g --ct + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOWE4ZmI0ZWUtNjk2Yy00ZDM4LWI5YzctMGUyNjUyNWUwZjJkO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDUwNTViZWEtMGRjOS00MTAzLWJlYTgtOGQ3N2I4NTRhNWU3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1971,7 +2158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:46 GMT + - Tue, 18 Oct 2022 20:03:42 GMT expires: - '-1' pragma: @@ -2003,23 +2190,22 @@ interactions: ParameterSetName: - -n -g --ct User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sx5k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9BvQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1595' + - '1623' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:47 GMT + - Tue, 18 Oct 2022 20:03:42 GMT expires: - '-1' pragma: @@ -2051,8 +2237,7 @@ interactions: ParameterSetName: - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -2064,7 +2249,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:45:47 GMT + - Tue, 18 Oct 2022 20:03:43 GMT expires: - '-1' pragma: @@ -2094,10 +2279,9 @@ interactions: ParameterSetName: - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -2110,7 +2294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:47 GMT + - Tue, 18 Oct 2022 20:03:44 GMT expires: - '-1' pragma: @@ -2144,23 +2328,22 @@ interactions: ParameterSetName: - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sx5k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9BvQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1595' + - '1623' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:48 GMT + - Tue, 18 Oct 2022 20:03:45 GMT expires: - '-1' pragma: @@ -2179,12 +2362,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/Sx5k=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO9BvQ=", "properties": {"allowedFqdnList": [], "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": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": false, "cloudToDevice": {"maxDeliveryCount": 10, "defaultTtlAsIso8601": "PT13H", @@ -2201,29 +2384,28 @@ interactions: Connection: - keep-alive Content-Length: - - '930' + - '960' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/Sx5k=''}' + - '{''IF-MATCH'': ''AAAADHO9BvQ=''}' ParameterSetName: - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sx5k=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-62281a52-541a-4523-b00c-c33572cb4931-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-4e7523f7-6586-4730-b658-88e781ce0409-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"92e254b8-2a5f-4b3b-8444-b58ca587128d"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9BvQ=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-d82cf9d6-6309-43ac-9c60-e26751c9964d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-eb7700d2-9f20-47bc-b5e7-3b5f5d28e3b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"3112e399-ecf7-4bc9-bd7a-4dd7c0a12b03"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNmNhOGE4ZWMtZjI1OS00ZTQwLWEzZTUtYTc4OGFhMzRjMjYzO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBiNGRjMWItODkyOC00ZDY2LTkzNDEtM2JkOWVmZGU5NWQ5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -2231,7 +2413,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:45:53 GMT + - Tue, 18 Oct 2022 20:03:49 GMT expires: - '-1' pragma: @@ -2261,22 +2443,21 @@ interactions: ParameterSetName: - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNmNhOGE4ZWMtZjI1OS00ZTQwLWEzZTUtYTc4OGFhMzRjMjYzO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBiNGRjMWItODkyOC00ZDY2LTkzNDEtM2JkOWVmZGU5NWQ5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Pending"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:46:24 GMT + - Tue, 18 Oct 2022 20:03:49 GMT expires: - '-1' pragma: @@ -2308,23 +2489,21 @@ interactions: ParameterSetName: - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBiNGRjMWItODkyOC00ZDY2LTkzNDEtM2JkOWVmZGU5NWQ5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Syd0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"92e254b8-2a5f-4b3b-8444-b58ca587128d"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '1708' + - '22' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:46:25 GMT + - Tue, 18 Oct 2022 20:04:19 GMT expires: - '-1' pragma: @@ -2346,43 +2525,51 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - iot hub identity remove + - iot hub update Connection: - keep-alive ParameterSetName: - - -n -g --system + - -n -g --set User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9Cd0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"3112e399-ecf7-4bc9-bd7a-4dd7c0a12b03"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '0' + - '1736' + content-type: + - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:46:24 GMT + - Tue, 18 Oct 2022 20:04: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: 204 - message: No Content + code: 200 + message: OK - request: - body: '{"name": "cli-file-upload-hub000003"}' + body: null headers: Accept: - application/json @@ -2392,20 +2579,57 @@ interactions: - iot hub identity remove Connection: - keep-alive - Content-Length: - - '37' - Content-Type: - - application/json ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: body: - string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 18 Oct 2022 20:04:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: '{"name": "cli-file-upload-hub000003"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity remove + Connection: + - keep-alive + Content-Length: + - '37' + Content-Type: + - application/json + ParameterSetName: + - -n -g --system + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview + response: + body: + string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name ''cli-file-upload-hub000003'' is not available"}' headers: cache-control: @@ -2415,7 +2639,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:46:25 GMT + - Tue, 18 Oct 2022 20:04:21 GMT expires: - '-1' pragma: @@ -2449,23 +2673,22 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Syd0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"92e254b8-2a5f-4b3b-8444-b58ca587128d"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9Cd0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"3112e399-ecf7-4bc9-bd7a-4dd7c0a12b03"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1708' + - '1736' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:46:26 GMT + - Tue, 18 Oct 2022 20:04:21 GMT expires: - '-1' pragma: @@ -2484,12 +2707,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/Syd0=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO9Cd0=", "properties": {"allowedFqdnList": [], "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": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": false, "cloudToDevice": {"maxDeliveryCount": 10, "defaultTtlAsIso8601": "PT13H", @@ -2506,29 +2729,28 @@ interactions: Connection: - keep-alive Content-Length: - - '920' + - '950' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/Syd0=''}' + - '{''IF-MATCH'': ''AAAADHO9Cd0=''}' ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Syd0=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-62281a52-541a-4523-b00c-c33572cb4931-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-4e7523f7-6586-4730-b658-88e781ce0409-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9Cd0=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-d82cf9d6-6309-43ac-9c60-e26751c9964d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-eb7700d2-9f20-47bc-b5e7-3b5f5d28e3b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDE4OTBiYWYtMWYyZC00MjNmLWFiMjMtNGUyNWU4OWMwMTk3O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODc0NjkyOTMtYWFmYS00NDJhLWFkY2QtMzU3NjVhYzUzMmMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -2536,7 +2758,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:46:30 GMT + - Tue, 18 Oct 2022 20:04:25 GMT expires: - '-1' pragma: @@ -2566,10 +2788,55 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDE4OTBiYWYtMWYyZC00MjNmLWFiMjMtNGUyNWU4OWMwMTk3O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODc0NjkyOTMtYWFmYS00NDJhLWFkY2QtMzU3NjVhYzUzMmMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 20:04:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --system + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODc0NjkyOTMtYWFmYS00NDJhLWFkY2QtMzU3NjVhYzUzMmMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2581,7 +2848,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:47:00 GMT + - Tue, 18 Oct 2022 20:04:56 GMT expires: - '-1' pragma: @@ -2613,23 +2880,22 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sy34=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9DIo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1595' + - '1623' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:47:00 GMT + - Tue, 18 Oct 2022 20:04:57 GMT expires: - '-1' pragma: @@ -2661,8 +2927,7 @@ interactions: ParameterSetName: - -n -g --fc --fcs User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -2674,7 +2939,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:47:00 GMT + - Tue, 18 Oct 2022 20:04:57 GMT expires: - '-1' pragma: @@ -2704,10 +2969,9 @@ interactions: ParameterSetName: - -n -g --fc --fcs User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -2720,7 +2984,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:47:02 GMT + - Tue, 18 Oct 2022 20:04:58 GMT expires: - '-1' pragma: @@ -2736,7 +3000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2754,23 +3018,22 @@ interactions: ParameterSetName: - -n -g --fc --fcs User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sy34=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9DIo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '1595' + - '1623' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:47:03 GMT + - Tue, 18 Oct 2022 20:04:59 GMT expires: - '-1' pragma: @@ -2789,12 +3052,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/Sy34=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO9DIo=", "properties": {"allowedFqdnList": [], "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": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/", "containerName": "iothubcontainer1000005"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": @@ -2812,29 +3075,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1363' + - '1393' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/Sy34=''}' + - '{''IF-MATCH'': ''AAAADHO9DIo=''}' ParameterSetName: - -n -g --fc --fcs User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sy34=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-62281a52-541a-4523-b00c-c33572cb4931-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-4e7523f7-6586-4730-b658-88e781ce0409-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/","containerName":"iothubcontainer1000005"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9DIo=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-d82cf9d6-6309-43ac-9c60-e26751c9964d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-eb7700d2-9f20-47bc-b5e7-3b5f5d28e3b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/","containerName":"iothubcontainer1000005"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfN2QxM2QwOGQtZDE1Yy00YjZmLTlkODYtMzUyYjc1ZjkzMmM4O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzM3YTFjYTktMWYzYi00YmNhLThjYWUtYjY3YWM4ZDg1NmNkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -2842,7 +3104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:47:05 GMT + - Tue, 18 Oct 2022 20:05:02 GMT expires: - '-1' pragma: @@ -2872,10 +3134,55 @@ interactions: ParameterSetName: - -n -g --fc --fcs User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfN2QxM2QwOGQtZDE1Yy00YjZmLTlkODYtMzUyYjc1ZjkzMmM4O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzM3YTFjYTktMWYzYi00YmNhLThjYWUtYjY3YWM4ZDg1NmNkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 20:05:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n -g --fc --fcs + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzM3YTFjYTktMWYzYi00YmNhLThjYWUtYjY3YWM4ZDg1NmNkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2887,7 +3194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:47:35 GMT + - Tue, 18 Oct 2022 20:05:32 GMT expires: - '-1' pragma: @@ -2919,23 +3226,22 @@ interactions: ParameterSetName: - -n -g --fc --fcs User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/SzUU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9DxI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2035' + - '2063' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:47:36 GMT + - Tue, 18 Oct 2022 20:05:33 GMT expires: - '-1' pragma: @@ -2967,8 +3273,7 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -2980,7 +3285,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:47:36 GMT + - Tue, 18 Oct 2022 20:05:33 GMT expires: - '-1' pragma: @@ -3010,10 +3315,9 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -3026,7 +3330,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:47:36 GMT + - Tue, 18 Oct 2022 20:05:34 GMT expires: - '-1' pragma: @@ -3060,23 +3364,22 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/SzUU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9DxI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2035' + - '2063' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:47:37 GMT + - Tue, 18 Oct 2022 20:05:34 GMT expires: - '-1' pragma: @@ -3095,12 +3398,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/SzUU=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO9DxI=", "properties": {"allowedFqdnList": [], "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": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000005", "authenticationType": "keyBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT5S", @@ -3119,29 +3422,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1400' + - '1430' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/SzUU=''}' + - '{''IF-MATCH'': ''AAAADHO9DxI=''}' ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/SzUU=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-62281a52-541a-4523-b00c-c33572cb4931-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-4e7523f7-6586-4730-b658-88e781ce0409-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9DxI=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-d82cf9d6-6309-43ac-9c60-e26751c9964d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-eb7700d2-9f20-47bc-b5e7-3b5f5d28e3b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjgyYWU2ZmMtNDQ5MS00NzQzLWE3NzEtNmI3M2ZhMGQzMzY5O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTIzYjBkZjgtZTdlMy00MDlhLWJjMDMtMmFlMzQ4MTIyZGIzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -3149,7 +3451,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:47:41 GMT + - Tue, 18 Oct 2022 20:05:40 GMT expires: - '-1' pragma: @@ -3179,10 +3481,55 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTIzYjBkZjgtZTdlMy00MDlhLWJjMDMtMmFlMzQ4MTIyZGIzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 20:05:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n -g --fsa + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjgyYWU2ZmMtNDQ5MS00NzQzLWE3NzEtNmI3M2ZhMGQzMzY5O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTIzYjBkZjgtZTdlMy00MDlhLWJjMDMtMmFlMzQ4MTIyZGIzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3194,7 +3541,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:12 GMT + - Tue, 18 Oct 2022 20:06:10 GMT expires: - '-1' pragma: @@ -3226,23 +3573,22 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sz0k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9Eb4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2067' + - '2095' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:13 GMT + - Tue, 18 Oct 2022 20:06:11 GMT expires: - '-1' pragma: @@ -3274,8 +3620,7 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -3287,7 +3632,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:48:12 GMT + - Tue, 18 Oct 2022 20:06:11 GMT expires: - '-1' pragma: @@ -3317,10 +3662,9 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -3333,7 +3677,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:13 GMT + - Tue, 18 Oct 2022 20:06:11 GMT expires: - '-1' pragma: @@ -3367,23 +3711,22 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sz0k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9Eb4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2067' + - '2095' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:14 GMT + - Tue, 18 Oct 2022 20:06:12 GMT expires: - '-1' pragma: @@ -3415,8 +3758,7 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -3428,7 +3770,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:48:14 GMT + - Tue, 18 Oct 2022 20:06:12 GMT expires: - '-1' pragma: @@ -3458,10 +3800,9 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -3474,7 +3815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:14 GMT + - Tue, 18 Oct 2022 20:06:13 GMT expires: - '-1' pragma: @@ -3490,7 +3831,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -3508,23 +3849,22 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sz0k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9Eb4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2067' + - '2095' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:15 GMT + - Tue, 18 Oct 2022 20:06:14 GMT expires: - '-1' pragma: @@ -3556,8 +3896,7 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -3569,7 +3908,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:48:15 GMT + - Tue, 18 Oct 2022 20:06:14 GMT expires: - '-1' pragma: @@ -3599,10 +3938,9 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -3615,7 +3953,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:15 GMT + - Tue, 18 Oct 2022 20:06:15 GMT expires: - '-1' pragma: @@ -3631,7 +3969,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -3649,23 +3987,22 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sz0k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9Eb4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2067' + - '2095' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:16 GMT + - Tue, 18 Oct 2022 20:06:15 GMT expires: - '-1' pragma: @@ -3697,8 +4034,7 @@ interactions: ParameterSetName: - --system -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -3710,7 +4046,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:48:17 GMT + - Tue, 18 Oct 2022 20:06:16 GMT expires: - '-1' pragma: @@ -3740,10 +4076,9 @@ interactions: ParameterSetName: - --system -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -3756,7 +4091,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:18 GMT + - Tue, 18 Oct 2022 20:06:17 GMT expires: - '-1' pragma: @@ -3790,23 +4125,22 @@ interactions: ParameterSetName: - --system -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sz0k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9Eb4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2067' + - '2095' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:18 GMT + - Tue, 18 Oct 2022 20:06:18 GMT expires: - '-1' pragma: @@ -3825,12 +4159,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/Sz0k=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO9Eb4=", "properties": {"allowedFqdnList": [], "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": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000005", "authenticationType": "keyBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT5S", @@ -3849,29 +4183,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1410' + - '1440' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/Sz0k=''}' + - '{''IF-MATCH'': ''AAAADHO9Eb4=''}' ParameterSetName: - --system -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Sz0k=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-62281a52-541a-4523-b00c-c33572cb4931-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-4e7523f7-6586-4730-b658-88e781ce0409-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9Eb4=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-d82cf9d6-6309-43ac-9c60-e26751c9964d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-eb7700d2-9f20-47bc-b5e7-3b5f5d28e3b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjBiZmVlYjYtYzhkOC00ZWUwLWE3OGUtNjY4MjI3MDg3MjUyO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGFmNDk5OGItMmNjYi00MjlmLTkxZDUtOTE5YzE3YzEyNDMzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -3879,7 +4212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:23 GMT + - Tue, 18 Oct 2022 20:06:21 GMT expires: - '-1' pragma: @@ -3891,7 +4224,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 201 message: Created @@ -3909,10 +4242,55 @@ interactions: ParameterSetName: - --system -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGFmNDk5OGItMmNjYi00MjlmLTkxZDUtOTE5YzE3YzEyNDMzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 20:06:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity assign + Connection: + - keep-alive + ParameterSetName: + - --system -n -g + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjBiZmVlYjYtYzhkOC00ZWUwLWE3OGUtNjY4MjI3MDg3MjUyO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGFmNDk5OGItMmNjYi00MjlmLTkxZDUtOTE5YzE3YzEyNDMzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3924,7 +4302,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:53 GMT + - Tue, 18 Oct 2022 20:06:51 GMT expires: - '-1' pragma: @@ -3956,23 +4334,22 @@ interactions: ParameterSetName: - --system -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S0SI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9FLQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2180' + - '2208' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:54 GMT + - Tue, 18 Oct 2022 20:06:52 GMT expires: - '-1' pragma: @@ -4004,13 +4381,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2022-05-01 response: body: - string: '{"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":{"keyCreationTime":{"key1":"2022-08-31T06:41:28.2342174Z","key2":"2022-08-31T06:41:28.2342174Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T06:41:28.2498116Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T06:41:28.2498116Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-31T06:41:28.1248234Z","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"}}' + string: '{"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":{"keyCreationTime":{"key1":"2022-10-18T19:58:22.4741658Z","key2":"2022-10-18T19:58:22.4741658Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T19:58:22.4898427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T19:58:22.4898427Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T19:58:22.3647951Z","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"}}' headers: cache-control: - no-cache @@ -4019,7 +4395,7 @@ interactions: content-type: - application/json date: - - Wed, 31 Aug 2022 06:48:54 GMT + - Tue, 18 Oct 2022 20:06:52 GMT expires: - '-1' pragma: @@ -4051,10 +4427,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) AZURECLI/2.39.0 - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%276014d4ad-804e-4c36-bf5d-5b3ed7f29f61%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%275a52fb49-4d2b-463e-a9e9-9c10c682af9c%27%29 response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' @@ -4066,11 +4441,11 @@ interactions: content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:55 GMT + - Tue, 18 Oct 2022 20:06:53 GMT odata-version: - '4.0' request-id: - - d902cebb-87ba-4d0e-903e-d8ab929d33b3 + - d71153b9-9545-432f-98c6-81657c3f3290 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -4078,14 +4453,14 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US","Slice":"E","Ring":"4","ScaleUnit":"002","RoleInstance":"BY3PEPF00015E00"}}' + - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF00076CDD"}}' x-ms-resource-unit: - '1' status: code: 200 message: OK - request: - body: '{"ids": ["6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"], "types": ["user", "group", + body: '{"ids": ["5a52fb49-4d2b-463e-a9e9-9c10c682af9c"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -4103,29 +4478,27 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) AZURECLI/2.39.0 - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: POST uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003"],"appDisplayName":null,"appDescription":null,"appId":"7c01b552-6fb6-47bc-9cc1-5a781a3866c8","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-08-31T06:48:19Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"cli-file-upload-hub000003","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["7c01b552-6fb6-47bc-9cc1-5a781a3866c8","https://identity.azure.net/Za70N15iFz1jy61bqR8MhSnYCgVMVVVJ4pwoCnuIpHs="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"AF41D2CA042473F37F768BFB51EEAC826F54F8C6","displayName":"CN=7c01b552-6fb6-47bc-9cc1-5a781a3866c8, - DC=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","endDateTime":"2022-11-29T06:43:00Z","key":null,"keyId":"8abe2c9f-b0c9-452f-a9bf-5f88661d7b90","startDateTime":"2022-08-31T06:43:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003"],"appDisplayName":null,"appDescription":null,"appId":"e6f9467b-5205-4b8b-bf82-399370258e56","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-10-18T20:06:18Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"cli-file-upload-hub000003","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["e6f9467b-5205-4b8b-bf82-399370258e56","https://identity.azure.net/UQ0b+PkkAaQO4SHKJEEsu0uQi0E76A3RjSmLVSNd9Wk="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"EE0A446B2E37D4DF6C54A2EB016F6787FC1D705B","displayName":"CN=e6f9467b-5205-4b8b-bf82-399370258e56","endDateTime":"2023-01-16T20:01:00Z","key":null,"keyId":"a8571ff0-f253-43c6-a72a-a5e235705347","startDateTime":"2022-10-18T20:01:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '1780' + - '1739' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:56 GMT + - Tue, 18 Oct 2022 20:06:53 GMT location: - https://graph.microsoft.com odata-version: - '4.0' request-id: - - 7d017b1f-2f11-44ca-964d-455f2e0c53a6 + - fc7cd08c-3877-4602-8043-c8a63e5593c5 strict-transport-security: - max-age=31536000 transfer-encoding: @@ -4133,7 +4506,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US","Slice":"E","Ring":"4","ScaleUnit":"002","RoleInstance":"BY3PEPF00015DD8"}}' + - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF0006CC0D"}}' x-ms-resource-unit: - '3' status: @@ -4153,9 +4526,8 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) msrest/0.7.0 - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.41.0 accept-language: - en-US method: GET @@ -4172,7 +4544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:56 GMT + - Tue, 18 Oct 2022 20:06:53 GMT expires: - '-1' pragma: @@ -4192,7 +4564,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe", - "principalId": "6014d4ad-804e-4c36-bf5d-5b3ed7f29f61", "principalType": "ServicePrincipal"}}' + "principalId": "5a52fb49-4d2b-463e-a9e9-9c10c682af9c", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -4211,16 +4583,15 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) msrest/0.7.0 - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.41.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T06:48:56.7917998Z","updatedOn":"2022-08-31T06:48:57.2761229Z","createdBy":null,"updatedBy":"6b30bdc6-696a-46fb-82d7-739c2fb147b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T20:06:54.9035918Z","updatedOn":"2022-10-18T20:06:55.3567193Z","createdBy":null,"updatedBy":"0417ddc2-87dc-4923-8865-84f5bd13acce","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -4229,7 +4600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:48:59 GMT + - Tue, 18 Oct 2022 20:06:56 GMT expires: - '-1' pragma: @@ -4241,7 +4612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -4259,8 +4630,7 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -4272,7 +4642,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:49:29 GMT + - Tue, 18 Oct 2022 20:07:26 GMT expires: - '-1' pragma: @@ -4302,10 +4672,9 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -4318,7 +4687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:49:29 GMT + - Tue, 18 Oct 2022 20:07:27 GMT expires: - '-1' pragma: @@ -4352,23 +4721,22 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S0SI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9FLQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2180' + - '2208' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:49:30 GMT + - Tue, 18 Oct 2022 20:07:28 GMT expires: - '-1' pragma: @@ -4400,8 +4768,7 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -4413,7 +4780,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:49:30 GMT + - Tue, 18 Oct 2022 20:07:28 GMT expires: - '-1' pragma: @@ -4443,10 +4810,9 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -4459,7 +4825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:49:30 GMT + - Tue, 18 Oct 2022 20:07:29 GMT expires: - '-1' pragma: @@ -4475,7 +4841,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -4493,23 +4859,22 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S0SI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9FLQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2180' + - '2208' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:49:31 GMT + - Tue, 18 Oct 2022 20:07:29 GMT expires: - '-1' pragma: @@ -4528,12 +4893,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/S0SI=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO9FLQ=", "properties": {"allowedFqdnList": [], "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": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000005", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT5S", @@ -4552,29 +4917,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1415' + - '1445' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/S0SI=''}' + - '{''IF-MATCH'': ''AAAADHO9FLQ=''}' ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S0SI=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-62281a52-541a-4523-b00c-c33572cb4931-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-4e7523f7-6586-4730-b658-88e781ce0409-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9FLQ=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-d82cf9d6-6309-43ac-9c60-e26751c9964d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-eb7700d2-9f20-47bc-b5e7-3b5f5d28e3b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDc5Njc3ODItNmY1NC00ZmY5LWE1YzYtYTZjYjUwMzI5NmJlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDliM2YzY2EtNTdjMy00MWMwLWFjZTgtOGVjYzdjZGEzMjFkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -4582,7 +4946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:49:35 GMT + - Tue, 18 Oct 2022 20:07:34 GMT expires: - '-1' pragma: @@ -4612,10 +4976,55 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDc5Njc3ODItNmY1NC00ZmY5LWE1YzYtYTZjYjUwMzI5NmJlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDliM2YzY2EtNTdjMy00MWMwLWFjZTgtOGVjYzdjZGEzMjFkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 20:07:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n -g --fsa + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDliM2YzY2EtNTdjMy00MWMwLWFjZTgtOGVjYzdjZGEzMjFkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -4627,7 +5036,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:06 GMT + - Tue, 18 Oct 2022 20:08:04 GMT expires: - '-1' pragma: @@ -4659,23 +5068,22 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S0wk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9GUg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2185' + - '2213' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:07 GMT + - Tue, 18 Oct 2022 20:08:05 GMT expires: - '-1' pragma: @@ -4707,8 +5115,7 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -4720,7 +5127,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:50:07 GMT + - Tue, 18 Oct 2022 20:08:05 GMT expires: - '-1' pragma: @@ -4750,10 +5157,9 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -4766,7 +5172,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:08 GMT + - Tue, 18 Oct 2022 20:08:05 GMT expires: - '-1' pragma: @@ -4782,7 +5188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -4800,23 +5206,22 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S0wk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9GUg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2185' + - '2213' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:09 GMT + - Tue, 18 Oct 2022 20:08:06 GMT expires: - '-1' pragma: @@ -4835,12 +5240,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/S0wk=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO9GUg=", "properties": {"allowedFqdnList": [], "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": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000005", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT5S", @@ -4859,29 +5264,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1415' + - '1445' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/S0wk=''}' + - '{''IF-MATCH'': ''AAAADHO9GUg=''}' ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S0wk=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-62281a52-541a-4523-b00c-c33572cb4931-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-4e7523f7-6586-4730-b658-88e781ce0409-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9GUg=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-d82cf9d6-6309-43ac-9c60-e26751c9964d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-eb7700d2-9f20-47bc-b5e7-3b5f5d28e3b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMmVlMzM2MGYtNTE5NS00ZjViLTk1MGQtMDY1YzAxODAxOTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjFmMDkxMDUtY2M0ZS00NjRjLThhYTYtZTBkZDM0ZDdhNDM2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -4889,7 +5293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:12 GMT + - Tue, 18 Oct 2022 20:08:09 GMT expires: - '-1' pragma: @@ -4919,10 +5323,55 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMmVlMzM2MGYtNTE5NS00ZjViLTk1MGQtMDY1YzAxODAxOTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjFmMDkxMDUtY2M0ZS00NjRjLThhYTYtZTBkZDM0ZDdhNDM2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 20:08:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n -g --fsi + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjFmMDkxMDUtY2M0ZS00NjRjLThhYTYtZTBkZDM0ZDdhNDM2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -4934,7 +5383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:43 GMT + - Tue, 18 Oct 2022 20:08:40 GMT expires: - '-1' pragma: @@ -4966,23 +5415,22 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S1Bo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9GvY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2185' + - '2213' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:44 GMT + - Tue, 18 Oct 2022 20:08:41 GMT expires: - '-1' pragma: @@ -5014,8 +5462,7 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -5027,7 +5474,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:50:44 GMT + - Tue, 18 Oct 2022 20:08:40 GMT expires: - '-1' pragma: @@ -5057,10 +5504,9 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -5073,7 +5519,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:43 GMT + - Tue, 18 Oct 2022 20:08:41 GMT expires: - '-1' pragma: @@ -5107,23 +5553,22 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S1Bo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9GvY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2185' + - '2213' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:45 GMT + - Tue, 18 Oct 2022 20:08:42 GMT expires: - '-1' pragma: @@ -5155,10 +5600,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) AZURECLI/2.39.0 - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%273f35c0c0-b8f2-404b-b792-7e556f193e54%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27ff076de9-5b45-4497-b688-e8c356df17fc%27%29 response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' @@ -5170,11 +5614,11 @@ interactions: content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:45 GMT + - Tue, 18 Oct 2022 20:08:42 GMT odata-version: - '4.0' request-id: - - 56e0288f-8577-4283-a4dc-c10a876e7d1b + - b7ca9fb9-cfc4-46ad-8421-8e1cd321d9cb strict-transport-security: - max-age=31536000 transfer-encoding: @@ -5182,14 +5626,14 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US","Slice":"E","Ring":"4","ScaleUnit":"002","RoleInstance":"BY3PEPF00019AE2"}}' + - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF0008FA6C"}}' x-ms-resource-unit: - '1' status: code: 200 message: OK - request: - body: '{"ids": ["3f35c0c0-b8f2-404b-b792-7e556f193e54"], "types": ["user", "group", + body: '{"ids": ["ff076de9-5b45-4497-b688-e8c356df17fc"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -5207,29 +5651,27 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) AZURECLI/2.39.0 - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: POST uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"3f35c0c0-b8f2-404b-b792-7e556f193e54","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004"],"appDisplayName":null,"appDescription":null,"appId":"4f710ce0-bfdc-4a2c-a73f-b4855ed0de3d","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-08-31T06:41:52Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"hub-user-identity000004","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["4f710ce0-bfdc-4a2c-a73f-b4855ed0de3d","https://identity.azure.net/faSBfO/NeuCfMdihH2EAu3/08Sh+lEIhrtsNe5mybB0="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"29A66B114B443A967754E470F64BC354166ADDAC","displayName":"CN=4f710ce0-bfdc-4a2c-a73f-b4855ed0de3d, - DC=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","endDateTime":"2022-11-29T06:36:00Z","key":null,"keyId":"67e5f269-a35b-4139-93cb-ac70af6e2748","startDateTime":"2022-08-31T06:36:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"ff076de9-5b45-4497-b688-e8c356df17fc","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004"],"appDisplayName":null,"appDescription":null,"appId":"a25e6f36-d255-496f-9e2a-91a69425f4b8","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-10-18T19:58:45Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"hub-user-identity000004","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["a25e6f36-d255-496f-9e2a-91a69425f4b8","https://identity.azure.net/4QpL1rthtBcBtv/l8ZW40Brkpb+aRZUvpPg9MYZ5tYs="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"77CA31F5CDDD2AE066066E24D4A8BAE3B7B778C0","displayName":"CN=a25e6f36-d255-496f-9e2a-91a69425f4b8","endDateTime":"2023-01-16T19:53:00Z","key":null,"keyId":"699130b1-e3c2-43ea-869d-18f37a383774","startDateTime":"2022-10-18T19:53:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '1798' + - '1757' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:45 GMT + - Tue, 18 Oct 2022 20:08:43 GMT location: - https://graph.microsoft.com odata-version: - '4.0' request-id: - - c8692932-a7fb-4a0e-9b6e-e6f6bbea1885 + - 3711be7b-6273-4454-9c0a-0e45046d9a0e strict-transport-security: - max-age=31536000 transfer-encoding: @@ -5237,7 +5679,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"West US","Slice":"E","Ring":"4","ScaleUnit":"002","RoleInstance":"BY3PEPF00015DDA"}}' + - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"002","RoleInstance":"MWH0EPF0008FA6F"}}' x-ms-resource-unit: - '3' status: @@ -5257,9 +5699,8 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) msrest/0.7.0 - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.41.0 accept-language: - en-US method: GET @@ -5276,7 +5717,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:45 GMT + - Tue, 18 Oct 2022 20:08:43 GMT expires: - '-1' pragma: @@ -5296,7 +5737,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe", - "principalId": "3f35c0c0-b8f2-404b-b792-7e556f193e54", "principalType": "ServicePrincipal"}}' + "principalId": "ff076de9-5b45-4497-b688-e8c356df17fc", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -5315,16 +5756,15 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) msrest/0.7.0 - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.41.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"3f35c0c0-b8f2-404b-b792-7e556f193e54","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T06:50:46.3968068Z","updatedOn":"2022-08-31T06:50:46.9124247Z","createdBy":null,"updatedBy":"6b30bdc6-696a-46fb-82d7-739c2fb147b7","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"ff076de9-5b45-4497-b688-e8c356df17fc","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T20:08:44.7906765Z","updatedOn":"2022-10-18T20:08:45.2125527Z","createdBy":null,"updatedBy":"0417ddc2-87dc-4923-8865-84f5bd13acce","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -5333,7 +5773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:50:48 GMT + - Tue, 18 Oct 2022 20:08:46 GMT expires: - '-1' pragma: @@ -5363,8 +5803,7 @@ interactions: ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -5376,7 +5815,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:55:48 GMT + - Tue, 18 Oct 2022 20:13:46 GMT expires: - '-1' pragma: @@ -5406,10 +5845,9 @@ interactions: ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -5422,7 +5860,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:55:49 GMT + - Tue, 18 Oct 2022 20:13:48 GMT expires: - '-1' pragma: @@ -5456,23 +5894,22 @@ interactions: ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S1Bo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9GvY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2185' + - '2213' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:55:50 GMT + - Tue, 18 Oct 2022 20:13:49 GMT expires: - '-1' pragma: @@ -5491,12 +5928,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/S1Bo=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO9GvY=", "properties": {"allowedFqdnList": [], "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": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000005", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT5S", @@ -5516,30 +5953,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1631' + - '1661' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/S1Bo=''}' + - '{''IF-MATCH'': ''AAAADHO9GvY=''}' ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S1Bo=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-62281a52-541a-4523-b00c-c33572cb4931-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-4e7523f7-6586-4730-b658-88e781ce0409-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{}},"principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9GvY=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-d82cf9d6-6309-43ac-9c60-e26751c9964d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-eb7700d2-9f20-47bc-b5e7-3b5f5d28e3b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{}},"principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzc4NDliNWUtMTYzNC00YTA2LWFkZDQtMThhMzM3OWZiYWQzO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODhkODg5ODYtOWUwYS00MWRhLWIxOTgtMjdhY2NjZTVlOTViO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -5547,7 +5983,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:55:54 GMT + - Tue, 18 Oct 2022 20:13:53 GMT expires: - '-1' pragma: @@ -5577,10 +6013,55 @@ interactions: ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzc4NDliNWUtMTYzNC00YTA2LWFkZDQtMThhMzM3OWZiYWQzO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODhkODg5ODYtOWUwYS00MWRhLWIxOTgtMjdhY2NjZTVlOTViO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 20:13: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity assign + Connection: + - keep-alive + ParameterSetName: + - -n -g --user + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODhkODg5ODYtOWUwYS00MWRhLWIxOTgtMjdhY2NjZTVlOTViO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -5592,7 +6073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:56:24 GMT + - Tue, 18 Oct 2022 20:14:23 GMT expires: - '-1' pragma: @@ -5624,24 +6105,23 @@ interactions: ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S2Uw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{"clientId":"4f710ce0-bfdc-4a2c-a73f-b4855ed0de3d","principalId":"3f35c0c0-b8f2-404b-b792-7e556f193e54"}},"principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9LCM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{"clientId":"a25e6f36-d255-496f-9e2a-91a69425f4b8","principalId":"ff076de9-5b45-4497-b688-e8c356df17fc"}},"principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2500' + - '2528' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:56:25 GMT + - Tue, 18 Oct 2022 20:14:24 GMT expires: - '-1' pragma: @@ -5673,8 +6153,7 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -5686,7 +6165,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:56:25 GMT + - Tue, 18 Oct 2022 20:14:24 GMT expires: - '-1' pragma: @@ -5716,10 +6195,9 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -5732,7 +6210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:56:26 GMT + - Tue, 18 Oct 2022 20:14:25 GMT expires: - '-1' pragma: @@ -5766,24 +6244,23 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S2Uw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{"clientId":"4f710ce0-bfdc-4a2c-a73f-b4855ed0de3d","principalId":"3f35c0c0-b8f2-404b-b792-7e556f193e54"}},"principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9LCM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{"clientId":"a25e6f36-d255-496f-9e2a-91a69425f4b8","principalId":"ff076de9-5b45-4497-b688-e8c356df17fc"}},"principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2500' + - '2528' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:56:26 GMT + - Tue, 18 Oct 2022 20:14:26 GMT expires: - '-1' pragma: @@ -5802,12 +6279,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/S2Uw=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO9LCM=", "properties": {"allowedFqdnList": [], "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": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000005", "authenticationType": "identityBased", "identity": {"userAssignedIdentity": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004"}}}, @@ -5828,30 +6305,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1839' + - '1869' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/S2Uw=''}' + - '{''IF-MATCH'': ''AAAADHO9LCM=''}' ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S2Uw=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-62281a52-541a-4523-b00c-c33572cb4931-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-4e7523f7-6586-4730-b658-88e781ce0409-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004"}}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{}},"principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9LCM=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-d82cf9d6-6309-43ac-9c60-e26751c9964d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-eb7700d2-9f20-47bc-b5e7-3b5f5d28e3b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004"}}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{}},"principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMWQ0MmQ0ZGYtNjc5Mi00MTA3LTk4MTktM2NjOTVlMDZiOGY0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDcxMzU4ZWYtYjZlYy00ZmRmLThlNzMtMDM3Zjk3MGZjYjlhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -5859,7 +6335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:56:30 GMT + - Tue, 18 Oct 2022 20:14:31 GMT expires: - '-1' pragma: @@ -5871,7 +6347,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -5889,10 +6365,55 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDcxMzU4ZWYtYjZlYy00ZmRmLThlNzMtMDM3Zjk3MGZjYjlhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 20:14:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n -g --fsi + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMWQ0MmQ0ZGYtNjc5Mi00MTA3LTk4MTktM2NjOTVlMDZiOGY0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDcxMzU4ZWYtYjZlYy00ZmRmLThlNzMtMDM3Zjk3MGZjYjlhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -5904,7 +6425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:57:01 GMT + - Tue, 18 Oct 2022 20:15:02 GMT expires: - '-1' pragma: @@ -5936,24 +6457,23 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S2dU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004"}}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{"clientId":"4f710ce0-bfdc-4a2c-a73f-b4855ed0de3d","principalId":"3f35c0c0-b8f2-404b-b792-7e556f193e54"}},"principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9LaQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004"}}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{"clientId":"a25e6f36-d255-496f-9e2a-91a69425f4b8","principalId":"ff076de9-5b45-4497-b688-e8c356df17fc"}},"principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2705' + - '2733' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:57:02 GMT + - Tue, 18 Oct 2022 20:15:02 GMT expires: - '-1' pragma: @@ -5985,8 +6505,7 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -5998,7 +6517,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 06:57:02 GMT + - Tue, 18 Oct 2022 20:15:02 GMT expires: - '-1' pragma: @@ -6028,10 +6547,9 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -6044,7 +6562,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:57:02 GMT + - Tue, 18 Oct 2022 20:15:03 GMT expires: - '-1' pragma: @@ -6060,7 +6578,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -6078,24 +6596,23 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S2dU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004"}}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{"clientId":"4f710ce0-bfdc-4a2c-a73f-b4855ed0de3d","principalId":"3f35c0c0-b8f2-404b-b792-7e556f193e54"}},"principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9LaQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004"}}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{"clientId":"a25e6f36-d255-496f-9e2a-91a69425f4b8","principalId":"ff076de9-5b45-4497-b688-e8c356df17fc"}},"principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2705' + - '2733' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:57:03 GMT + - Tue, 18 Oct 2022 20:15:04 GMT expires: - '-1' pragma: @@ -6114,12 +6631,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/S2dU=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO9LaQ=", "properties": {"allowedFqdnList": [], "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": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000005", "authenticationType": "keyBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT5S", @@ -6139,30 +6656,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1626' + - '1656' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/S2dU=''}' + - '{''IF-MATCH'': ''AAAADHO9LaQ=''}' ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S2dU=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-62281a52-541a-4523-b00c-c33572cb4931-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-4e7523f7-6586-4730-b658-88e781ce0409-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 06:43:42 GMT","ModifiedTime":"Wed, 31 Aug 2022 06:43:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{}},"principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9LaQ=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq-operationmonitoring","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-d82cf9d6-6309-43ac-9c60-e26751c9964d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-eb7700d2-9f20-47bc-b5e7-3b5f5d28e3b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 20:00:21 GMT","ModifiedTime":"Tue, 18 Oct 2022 20:00:21 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{}},"principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTg3N2I1OWMtNjRmMS00MDQ3LWE0YTEtMDBjYzU3ZmYwNDc0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYTIyNDQwN2UtYmE4Yi00OWE0LTg2YzUtZTdhYWUwYjU3OTA2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -6170,7 +6686,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:57:06 GMT + - Tue, 18 Oct 2022 20:15:08 GMT expires: - '-1' pragma: @@ -6200,10 +6716,55 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYTIyNDQwN2UtYmE4Yi00OWE0LTg2YzUtZTdhYWUwYjU3OTA2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 20:15:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n -g --fsa + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTg3N2I1OWMtNjRmMS00MDQ3LWE0YTEtMDBjYzU3ZmYwNDc0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYTIyNDQwN2UtYmE4Yi00OWE0LTg2YzUtZTdhYWUwYjU3OTA2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -6215,7 +6776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:57:37 GMT + - Tue, 18 Oct 2022 20:15:39 GMT expires: - '-1' pragma: @@ -6247,24 +6808,23 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.10.6 (Linux-5.15.0-1017-azure-x86_64-with-glibc2.31) - VSTS_0fb41ef4-5012-48a9-bf39-4ee3de03ee35_build_4949_0 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/S2n0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubekgfpo","endpoint":"sb://iothub-ns-cli-file-u-21257569-e123addea2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{"clientId":"4f710ce0-bfdc-4a2c-a73f-b4855ed0de3d","principalId":"3f35c0c0-b8f2-404b-b792-7e556f193e54"}},"principalId":"6014d4ad-804e-4c36-bf5d-5b3ed7f29f61"},"systemData":{"createdAt":"2022-08-31T06:41:56.61Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub000003","name":"cli-file-upload-hub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9L+A=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxfjhjq","endpoint":"sb://iothub-ns-cli-file-u-22326903-178290c618.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000005","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identity000004":{"clientId":"a25e6f36-d255-496f-9e2a-91a69425f4b8","principalId":"ff076de9-5b45-4497-b688-e8c356df17fc"}},"principalId":"5a52fb49-4d2b-463e-a9e9-9c10c682af9c"},"systemData":{"createdAt":"2022-10-18T19:58:49.39Z"}}' headers: cache-control: - no-cache content-length: - - '2495' + - '2523' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 06:57:37 GMT + - Tue, 18 Oct 2022 20:15:39 GMT expires: - '-1' pragma: 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 80902e80859..9de4ccbe7f8 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,43 +13,41 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2022-05-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/azext","name":"azext","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-15T07:20:26.3629732Z","key2":"2021-10-15T07:20:26.3629732Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T07:20:26.2379798Z","primaryEndpoints":{"dfs":"https://azext.dfs.core.windows.net/","web":"https://azext.z13.web.core.windows.net/","blob":"https://azext.blob.core.windows.net/","queue":"https://azext.queue.core.windows.net/","table":"https://azext.table.core.windows.net/","file":"https://azext.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azext-secondary.dfs.core.windows.net/","web":"https://azext-secondary.z13.web.core.windows.net/","blob":"https://azext-secondary.blob.core.windows.net/","queue":"https://azext-secondary.queue.core.windows.net/","table":"https://azext-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bez-rg/providers/Microsoft.Storage/storageAccounts/bezstorage0815","name":"bezstorage0815","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-15T07:11:10.1759953Z","key2":"2022-08-15T07:11:10.1759953Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-15T07:11:10.7541205Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-15T07:11:10.7541205Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-15T07:11:09.6916203Z","primaryEndpoints":{"dfs":"https://bezstorage0815.dfs.core.windows.net/","web":"https://bezstorage0815.z13.web.core.windows.net/","blob":"https://bezstorage0815.blob.core.windows.net/","queue":"https://bezstorage0815.queue.core.windows.net/","table":"https://bezstorage0815.table.core.windows.net/","file":"https://bezstorage0815.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://bezstorage0815-secondary.dfs.core.windows.net/","web":"https://bezstorage0815-secondary.z13.web.core.windows.net/","blob":"https://bezstorage0815-secondary.blob.core.windows.net/","queue":"https://bezstorage0815-secondary.queue.core.windows.net/","table":"https://bezstorage0815-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"dfs":"https://clitestresultstac.dfs.core.windows.net/","web":"https://clitestresultstac.z13.web.core.windows.net/","blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestresultstac-secondary.dfs.core.windows.net/","web":"https://clitestresultstac-secondary.z13.web.core.windows.net/","blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/galleryapptestaccount","name":"galleryapptestaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-20T02:51:38.9977139Z","key2":"2021-10-20T02:51:38.9977139Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T02:51:38.8727156Z","primaryEndpoints":{"dfs":"https://galleryapptestaccount.dfs.core.windows.net/","web":"https://galleryapptestaccount.z13.web.core.windows.net/","blob":"https://galleryapptestaccount.blob.core.windows.net/","queue":"https://galleryapptestaccount.queue.core.windows.net/","table":"https://galleryapptestaccount.table.core.windows.net/","file":"https://galleryapptestaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"identity":{"principalId":"4442e275-7210-4a69-81e7-b7c0955882b5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg/providers/Microsoft.Storage/storageAccounts/hangstorage","name":"hangstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"kk":"zz","--kk":"zz"},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-04-22T03:09:52.5634047Z","key2":"2022-04-22T03:09:52.5634047Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"isSftpEnabled":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-22T03:09:52.5790274Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-22T03:09:52.5790274Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-22T03:09:52.4227640Z","primaryEndpoints":{"dfs":"https://hangstorage.dfs.core.windows.net/","web":"https://hangstorage.z13.web.core.windows.net/","blob":"https://hangstorage.blob.core.windows.net/","queue":"https://hangstorage.queue.core.windows.net/","table":"https://hangstorage.table.core.windows.net/","file":"https://hangstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"dfs":"https://portal2clistorage.dfs.core.windows.net/","web":"https://portal2clistorage.z13.web.core.windows.net/","blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://portal2clistorage-secondary.dfs.core.windows.net/","web":"https://portal2clistorage-secondary.z13.web.core.windows.net/","blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/privatepackage","name":"privatepackage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-19T08:53:09.0238938Z","key2":"2021-10-19T08:53:09.0238938Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-19T08:53:08.9301661Z","primaryEndpoints":{"dfs":"https://privatepackage.dfs.core.windows.net/","web":"https://privatepackage.z13.web.core.windows.net/","blob":"https://privatepackage.blob.core.windows.net/","queue":"https://privatepackage.queue.core.windows.net/","table":"https://privatepackage.table.core.windows.net/","file":"https://privatepackage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://privatepackage-secondary.dfs.core.windows.net/","web":"https://privatepackage-secondary.z13.web.core.windows.net/","blob":"https://privatepackage-secondary.blob.core.windows.net/","queue":"https://privatepackage-secondary.queue.core.windows.net/","table":"https://privatepackage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/queuetest/providers/Microsoft.Storage/storageAccounts/qteststac","name":"qteststac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-11-10T05:21:49.0582561Z","key2":"2021-11-10T05:21:49.0582561Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-10T05:21:48.9488735Z","primaryEndpoints":{"dfs":"https://qteststac.dfs.core.windows.net/","web":"https://qteststac.z13.web.core.windows.net/","blob":"https://qteststac.blob.core.windows.net/","queue":"https://qteststac.queue.core.windows.net/","table":"https://qteststac.table.core.windows.net/","file":"https://qteststac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qteststac-secondary.dfs.core.windows.net/","web":"https://qteststac-secondary.z13.web.core.windows.net/","blob":"https://qteststac-secondary.blob.core.windows.net/","queue":"https://qteststac-secondary.queue.core.windows.net/","table":"https://qteststac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"FileStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Storage/storageAccounts/saeastusnfs","name":"saeastusnfs","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-09T03:07:31.6721319Z","key2":"2022-08-09T03:07:31.6721319Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Storage/storageAccounts/saeastusnfs/privateEndpointConnections/saeastusnfs.10659eb6-b1fa-4873-b71b-fc35399d6ea0","name":"saeastusnfs.10659eb6-b1fa-4873-b71b-fc35399d6ea0","type":"Microsoft.Storage/storageAccounts/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Network/privateEndpoints/privateendpointnfs"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionRequired":"None"}}}],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"largeFileSharesState":"Enabled","networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-09T03:07:31.6877592Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-09T03:07:31.6877592Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-09T03:07:31.5471648Z","primaryEndpoints":{"file":"https://saeastusnfs.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-purview-msyyc/providers/Microsoft.Storage/storageAccounts/scaneastusxncccyt","name":"scaneastusxncccyt","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-23T01:56:19.6672075Z","key2":"2021-08-23T01:56:19.6672075Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T01:56:19.5422473Z","primaryEndpoints":{"dfs":"https://scaneastusxncccyt.dfs.core.windows.net/","web":"https://scaneastusxncccyt.z13.web.core.windows.net/","blob":"https://scaneastusxncccyt.blob.core.windows.net/","queue":"https://scaneastusxncccyt.queue.core.windows.net/","table":"https://scaneastusxncccyt.table.core.windows.net/","file":"https://scaneastusxncccyt.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageaccountsynapse1","name":"storageaccountsynapse1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-03T06:18:46.5540684Z","key2":"2022-03-03T06:18:46.5540684Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T06:18:46.5696968Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T06:18:46.5696968Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T06:18:46.4134367Z","primaryEndpoints":{"dfs":"https://storageaccountsynapse1.dfs.core.windows.net/","web":"https://storageaccountsynapse1.z13.web.core.windows.net/","blob":"https://storageaccountsynapse1.blob.core.windows.net/","queue":"https://storageaccountsynapse1.queue.core.windows.net/","table":"https://storageaccountsynapse1.table.core.windows.net/","file":"https://storageaccountsynapse1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storageaccountsynapse1-secondary.dfs.core.windows.net/","web":"https://storageaccountsynapse1-secondary.z13.web.core.windows.net/","blob":"https://storageaccountsynapse1-secondary.blob.core.windows.net/","queue":"https://storageaccountsynapse1-secondary.queue.core.windows.net/","table":"https://storageaccountsynapse1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testvlw","name":"testvlw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-27T06:47:50.5497427Z","key2":"2021-10-27T06:47:50.5497427Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:47:50.4247606Z","primaryEndpoints":{"dfs":"https://testvlw.dfs.core.windows.net/","web":"https://testvlw.z13.web.core.windows.net/","blob":"https://testvlw.blob.core.windows.net/","queue":"https://testvlw.queue.core.windows.net/","table":"https://testvlw.table.core.windows.net/","file":"https://testvlw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testvlw-secondary.dfs.core.windows.net/","web":"https://testvlw-secondary.z13.web.core.windows.net/","blob":"https://testvlw-secondary.blob.core.windows.net/","queue":"https://testvlw-secondary.queue.core.windows.net/","table":"https://testvlw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"key1":"value1"},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-16T08:39:21.3287573Z","key2":"2021-08-16T08:39:21.3287573Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-16T08:39:21.2193709Z","primaryEndpoints":{"dfs":"https://yssa.dfs.core.windows.net/","web":"https://yssa.z13.web.core.windows.net/","blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsa","name":"zhiyihuangsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-10T05:47:01.2111871Z","key2":"2021-09-10T05:47:01.2111871Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T05:47:01.0861745Z","primaryEndpoints":{"dfs":"https://zhiyihuangsa.dfs.core.windows.net/","web":"https://zhiyihuangsa.z13.web.core.windows.net/","blob":"https://zhiyihuangsa.blob.core.windows.net/","queue":"https://zhiyihuangsa.queue.core.windows.net/","table":"https://zhiyihuangsa.table.core.windows.net/","file":"https://zhiyihuangsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsa-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsa-secondary.z13.web.core.windows.net/","blob":"https://zhiyihuangsa-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsa-secondary.queue.core.windows.net/","table":"https://zhiyihuangsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"BlockBlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsadatalake","name":"zhiyihuangsadatalake","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-04T08:22:03.4626093Z","key2":"2022-07-04T08:22:03.4626093Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"isSftpEnabled":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-04T08:22:03.4782085Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-04T08:22:03.4782085Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-07-04T08:22:03.2750855Z","primaryEndpoints":{"dfs":"https://zhiyihuangsadatalake.dfs.core.windows.net/","web":"https://zhiyihuangsadatalake.z13.web.core.windows.net/","blob":"https://zhiyihuangsadatalake.blob.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"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":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-17T01:54:55.9814285Z","key2":"2022-08-17T01:54:55.9814285Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-17T01:54:56.7470655Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-17T01:54:56.7470655Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-17T01:54:55.8408055Z","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_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/zhuyan","name":"zhuyan","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-29T07:49:14.8648748Z","key2":"2022-08-29T07:49:14.8648748Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-29T07:49:15.5055031Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-29T07:49:15.5055031Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-29T07:49:14.7086254Z","primaryEndpoints":{"dfs":"https://zhuyan.dfs.core.windows.net/","web":"https://zhuyan.z13.web.core.windows.net/","blob":"https://zhuyan.blob.core.windows.net/","queue":"https://zhuyan.queue.core.windows.net/","table":"https://zhuyan.table.core.windows.net/","file":"https://zhuyan.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhuyan-secondary.dfs.core.windows.net/","web":"https://zhuyan-secondary.z13.web.core.windows.net/","blob":"https://zhuyan-secondary.blob.core.windows.net/","queue":"https://zhuyan-secondary.queue.core.windows.net/","table":"https://zhuyan-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"dfs":"https://azextensionedge.dfs.core.windows.net/","web":"https://azextensionedge.z22.web.core.windows.net/","blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azextensionedge-secondary.dfs.core.windows.net/","web":"https://azextensionedge-secondary.z22.web.core.windows.net/","blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"dfs":"https://azurecliedge.dfs.core.windows.net/","web":"https://azurecliedge.z22.web.core.windows.net/","blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgndqcnhtzbgfvywayllmropscysoonfvdiqt3yy2f2owek56fmxotp4xkaed4ctlml/providers/Microsoft.Storage/storageAccounts/clitesthbyb7yke3ybao3eon","name":"clitesthbyb7yke3ybao3eon","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-07T04:18:13.1067632Z","key2":"2022-05-07T04:18:13.1067632Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-07T04:18:13.1067632Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-07T04:18:13.1067632Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-07T04:18:12.9818218Z","primaryEndpoints":{"dfs":"https://clitesthbyb7yke3ybao3eon.dfs.core.windows.net/","web":"https://clitesthbyb7yke3ybao3eon.z22.web.core.windows.net/","blob":"https://clitesthbyb7yke3ybao3eon.blob.core.windows.net/","queue":"https://clitesthbyb7yke3ybao3eon.queue.core.windows.net/","table":"https://clitesthbyb7yke3ybao3eon.table.core.windows.net/","file":"https://clitesthbyb7yke3ybao3eon.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":{"keyCreationTime":{"key1":"2022-08-31T09:57:21.6205546Z","key2":"2022-08-31T09:57:21.6205546Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T09:57:21.6205546Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T09:57:21.6205546Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-31T09:57:21.5112102Z","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/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/pythonsdkmsyyc","name":"pythonsdkmsyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-30T09:03:04.8209550Z","key2":"2021-06-30T09:03:04.8209550Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-30T09:03:04.7272348Z","primaryEndpoints":{"dfs":"https://pythonsdkmsyyc.dfs.core.windows.net/","web":"https://pythonsdkmsyyc.z22.web.core.windows.net/","blob":"https://pythonsdkmsyyc.blob.core.windows.net/","queue":"https://pythonsdkmsyyc.queue.core.windows.net/","table":"https://pythonsdkmsyyc.table.core.windows.net/","file":"https://pythonsdkmsyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageyyc","name":"storageyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-26T05:53:22.9974267Z","key2":"2021-09-26T05:53:22.9974267Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:53:22.9192578Z","primaryEndpoints":{"dfs":"https://storageyyc.dfs.core.windows.net/","web":"https://storageyyc.z22.web.core.windows.net/","blob":"https://storageyyc.blob.core.windows.net/","queue":"https://storageyyc.queue.core.windows.net/","table":"https://storageyyc.table.core.windows.net/","file":"https://storageyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw","name":"testalw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":3,"state":"Disabled"}},"keyCreationTime":{"key1":"2021-10-27T06:27:50.3554138Z","key2":"2021-10-27T06:27:50.3554138Z"},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw/privateEndpointConnections/testalw.cefd3d56-feb9-4be9-978b-fb9416daa1ab","name":"testalw.cefd3d56-feb9-4be9-978b-fb9416daa1ab","type":"Microsoft.Storage/storageAccounts/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Network/privateEndpoints/testpe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionRequired":"None"}}}],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:27:50.2616355Z","primaryEndpoints":{"dfs":"https://testalw.dfs.core.windows.net/","web":"https://testalw.z22.web.core.windows.net/","blob":"https://testalw.blob.core.windows.net/","queue":"https://testalw.queue.core.windows.net/","table":"https://testalw.table.core.windows.net/","file":"https://testalw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw-secondary.dfs.core.windows.net/","web":"https://testalw-secondary.z22.web.core.windows.net/","blob":"https://testalw-secondary.blob.core.windows.net/","queue":"https://testalw-secondary.queue.core.windows.net/","table":"https://testalw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1027","name":"testalw1027","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-27T07:34:49.7592232Z","key2":"2021-10-27T07:34:49.7592232Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T07:34:49.6810731Z","primaryEndpoints":{"dfs":"https://testalw1027.dfs.core.windows.net/","web":"https://testalw1027.z22.web.core.windows.net/","blob":"https://testalw1027.blob.core.windows.net/","queue":"https://testalw1027.queue.core.windows.net/","table":"https://testalw1027.table.core.windows.net/","file":"https://testalw1027.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1027-secondary.dfs.core.windows.net/","web":"https://testalw1027-secondary.z22.web.core.windows.net/","blob":"https://testalw1027-secondary.blob.core.windows.net/","queue":"https://testalw1027-secondary.queue.core.windows.net/","table":"https://testalw1027-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1028","name":"testalw1028","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-28T01:49:10.2414505Z","key2":"2021-10-28T01:49:10.2414505Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T01:49:10.1633042Z","primaryEndpoints":{"dfs":"https://testalw1028.dfs.core.windows.net/","web":"https://testalw1028.z22.web.core.windows.net/","blob":"https://testalw1028.blob.core.windows.net/","queue":"https://testalw1028.queue.core.windows.net/","table":"https://testalw1028.table.core.windows.net/","file":"https://testalw1028.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1028-secondary.dfs.core.windows.net/","web":"https://testalw1028-secondary.z22.web.core.windows.net/","blob":"https://testalw1028-secondary.blob.core.windows.net/","queue":"https://testalw1028-secondary.queue.core.windows.net/","table":"https://testalw1028-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yshns","name":"yshns","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T02:10:28.4103368Z","key2":"2021-10-15T02:10:28.4103368Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T02:10:28.3165819Z","primaryEndpoints":{"dfs":"https://yshns.dfs.core.windows.net/","web":"https://yshns.z22.web.core.windows.net/","blob":"https://yshns.blob.core.windows.net/","queue":"https://yshns.queue.core.windows.net/","table":"https://yshns.table.core.windows.net/","file":"https://yshns.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yshns-secondary.dfs.core.windows.net/","web":"https://yshns-secondary.z22.web.core.windows.net/","blob":"https://yshns-secondary.blob.core.windows.net/","queue":"https://yshns-secondary.queue.core.windows.net/","table":"https://yshns-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"dfs":"https://azuresdktest.dfs.core.windows.net/","web":"https://azuresdktest.z7.web.core.windows.net/","blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.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.rgbcjpbfrgst/providers/Microsoft.Storage/storageAccounts/clitest7y3z5tzoevqexrwmb","name":"clitest7y3z5tzoevqexrwmb","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-11T16:07:26.7756526Z","key2":"2022-08-11T16:07:26.7756526Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-11T16:07:26.7912767Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-11T16:07:26.7912767Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-11T16:07:26.6975255Z","primaryEndpoints":{"blob":"https://clitest7y3z5tzoevqexrwmb.blob.core.windows.net/","queue":"https://clitest7y3z5tzoevqexrwmb.queue.core.windows.net/","table":"https://clitest7y3z5tzoevqexrwmb.table.core.windows.net/","file":"https://clitest7y3z5tzoevqexrwmb.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.rgephuyzwt3d/providers/Microsoft.Storage/storageAccounts/clitesturpy433yg4s3cpou6","name":"clitesturpy433yg4s3cpou6","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-21T15:56:17.1133943Z","key2":"2022-07-21T15:56:17.1133943Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T15:56:17.1290016Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T15:56:17.1290016Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-07-21T15:56:17.0352115Z","primaryEndpoints":{"blob":"https://clitesturpy433yg4s3cpou6.blob.core.windows.net/","queue":"https://clitesturpy433yg4s3cpou6.queue.core.windows.net/","table":"https://clitesturpy433yg4s3cpou6.table.core.windows.net/","file":"https://clitesturpy433yg4s3cpou6.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.rggrglkh7zr7/providers/Microsoft.Storage/storageAccounts/clitest2f63bh43aix4wcnlh","name":"clitest2f63bh43aix4wcnlh","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.5541453Z","key2":"2021-04-22T08:17:38.5541453Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.4760163Z","primaryEndpoints":{"blob":"https://clitest2f63bh43aix4wcnlh.blob.core.windows.net/","queue":"https://clitest2f63bh43aix4wcnlh.queue.core.windows.net/","table":"https://clitest2f63bh43aix4wcnlh.table.core.windows.net/","file":"https://clitest2f63bh43aix4wcnlh.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrli6qx2bll/providers/Microsoft.Storage/storageAccounts/clitest2kskuzyfvkqd7xx4y","name":"clitest2kskuzyfvkqd7xx4y","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T23:34:08.0367829Z","key2":"2022-03-16T23:34:08.0367829Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T23:34:08.0367829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T23:34:08.0367829Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-16T23:34:07.9430240Z","primaryEndpoints":{"blob":"https://clitest2kskuzyfvkqd7xx4y.blob.core.windows.net/","queue":"https://clitest2kskuzyfvkqd7xx4y.queue.core.windows.net/","table":"https://clitest2kskuzyfvkqd7xx4y.table.core.windows.net/","file":"https://clitest2kskuzyfvkqd7xx4y.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh5duq2f6uh/providers/Microsoft.Storage/storageAccounts/clitest2vjedutxs37ymp4ni","name":"clitest2vjedutxs37ymp4ni","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0424866Z","key2":"2021-04-23T07:13:21.0424866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9643257Z","primaryEndpoints":{"blob":"https://clitest2vjedutxs37ymp4ni.blob.core.windows.net/","queue":"https://clitest2vjedutxs37ymp4ni.queue.core.windows.net/","table":"https://clitest2vjedutxs37ymp4ni.table.core.windows.net/","file":"https://clitest2vjedutxs37ymp4ni.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6l3rg6atb/providers/Microsoft.Storage/storageAccounts/clitest4sjmiwke5nz3f67pu","name":"clitest4sjmiwke5nz3f67pu","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.3305055Z","key2":"2021-04-22T08:02:15.3305055Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.2523305Z","primaryEndpoints":{"blob":"https://clitest4sjmiwke5nz3f67pu.blob.core.windows.net/","queue":"https://clitest4sjmiwke5nz3f67pu.queue.core.windows.net/","table":"https://clitest4sjmiwke5nz3f67pu.table.core.windows.net/","file":"https://clitest4sjmiwke5nz3f67pu.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest5frikrzhxwryrkfel","name":"clitest5frikrzhxwryrkfel","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:19:22.9620171Z","key2":"2021-04-22T08:19:22.9620171Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:19:22.8838883Z","primaryEndpoints":{"blob":"https://clitest5frikrzhxwryrkfel.blob.core.windows.net/","queue":"https://clitest5frikrzhxwryrkfel.queue.core.windows.net/","table":"https://clitest5frikrzhxwryrkfel.table.core.windows.net/","file":"https://clitest5frikrzhxwryrkfel.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc4sjsrzt4/providers/Microsoft.Storage/storageAccounts/clitest63b5vtkhuf7auho6z","name":"clitest63b5vtkhuf7auho6z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.3198561Z","key2":"2021-04-22T08:17:38.3198561Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.2416459Z","primaryEndpoints":{"blob":"https://clitest63b5vtkhuf7auho6z.blob.core.windows.net/","queue":"https://clitest63b5vtkhuf7auho6z.queue.core.windows.net/","table":"https://clitest63b5vtkhuf7auho6z.table.core.windows.net/","file":"https://clitest63b5vtkhuf7auho6z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitest6jusqp4qvczw52pql","name":"clitest6jusqp4qvczw52pql","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:05:08.7847684Z","key2":"2021-04-22T08:05:08.7847684Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:05:08.7065579Z","primaryEndpoints":{"blob":"https://clitest6jusqp4qvczw52pql.blob.core.windows.net/","queue":"https://clitest6jusqp4qvczw52pql.queue.core.windows.net/","table":"https://clitest6jusqp4qvczw52pql.table.core.windows.net/","file":"https://clitest6jusqp4qvczw52pql.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest74vl6rwuxl5fbuklw","name":"clitest74vl6rwuxl5fbuklw","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.2260082Z","key2":"2021-04-22T08:17:38.2260082Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.1635154Z","primaryEndpoints":{"blob":"https://clitest74vl6rwuxl5fbuklw.blob.core.windows.net/","queue":"https://clitest74vl6rwuxl5fbuklw.queue.core.windows.net/","table":"https://clitest74vl6rwuxl5fbuklw.table.core.windows.net/","file":"https://clitest74vl6rwuxl5fbuklw.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6swh3vebl/providers/Microsoft.Storage/storageAccounts/clitestaxq4uhxp4axa3uagg","name":"clitestaxq4uhxp4axa3uagg","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-10T05:18:34.9019274Z","key2":"2021-12-10T05:18:34.9019274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-10T05:18:34.9175551Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-10T05:18:34.9175551Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-10T05:18:34.8238281Z","primaryEndpoints":{"blob":"https://clitestaxq4uhxp4axa3uagg.blob.core.windows.net/","queue":"https://clitestaxq4uhxp4axa3uagg.queue.core.windows.net/","table":"https://clitestaxq4uhxp4axa3uagg.table.core.windows.net/","file":"https://clitestaxq4uhxp4axa3uagg.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiudkrkxpl4/providers/Microsoft.Storage/storageAccounts/clitestbiegaggvgwivkqyyi","name":"clitestbiegaggvgwivkqyyi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.8705764Z","key2":"2021-04-23T07:13:20.8705764Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.7925187Z","primaryEndpoints":{"blob":"https://clitestbiegaggvgwivkqyyi.blob.core.windows.net/","queue":"https://clitestbiegaggvgwivkqyyi.queue.core.windows.net/","table":"https://clitestbiegaggvgwivkqyyi.table.core.windows.net/","file":"https://clitestbiegaggvgwivkqyyi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46ia57tmnz/providers/Microsoft.Storage/storageAccounts/clitestdlxtp24ycnjl3jui2","name":"clitestdlxtp24ycnjl3jui2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.3217696Z","key2":"2021-04-23T03:42:54.3217696Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.2436164Z","primaryEndpoints":{"blob":"https://clitestdlxtp24ycnjl3jui2.blob.core.windows.net/","queue":"https://clitestdlxtp24ycnjl3jui2.queue.core.windows.net/","table":"https://clitestdlxtp24ycnjl3jui2.table.core.windows.net/","file":"https://clitestdlxtp24ycnjl3jui2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23akmjlz2r/providers/Microsoft.Storage/storageAccounts/clitestdmmxq6bklh35yongi","name":"clitestdmmxq6bklh35yongi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.6966074Z","key2":"2021-08-05T19:49:04.6966074Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.6185933Z","primaryEndpoints":{"blob":"https://clitestdmmxq6bklh35yongi.blob.core.windows.net/","queue":"https://clitestdmmxq6bklh35yongi.queue.core.windows.net/","table":"https://clitestdmmxq6bklh35yongi.table.core.windows.net/","file":"https://clitestdmmxq6bklh35yongi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv3m577d7ho/providers/Microsoft.Storage/storageAccounts/clitestej2fvhoj3zogyp5e7","name":"clitestej2fvhoj3zogyp5e7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.7279926Z","key2":"2021-04-23T03:42:54.7279926Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6342444Z","primaryEndpoints":{"blob":"https://clitestej2fvhoj3zogyp5e7.blob.core.windows.net/","queue":"https://clitestej2fvhoj3zogyp5e7.queue.core.windows.net/","table":"https://clitestej2fvhoj3zogyp5e7.table.core.windows.net/","file":"https://clitestej2fvhoj3zogyp5e7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6ikwpcsq7/providers/Microsoft.Storage/storageAccounts/clitestggvkyebv5o55dhakj","name":"clitestggvkyebv5o55dhakj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.2300019Z","key2":"2021-04-23T07:13:21.2300019Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:21.1518492Z","primaryEndpoints":{"blob":"https://clitestggvkyebv5o55dhakj.blob.core.windows.net/","queue":"https://clitestggvkyebv5o55dhakj.queue.core.windows.net/","table":"https://clitestggvkyebv5o55dhakj.table.core.windows.net/","file":"https://clitestggvkyebv5o55dhakj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6glpfa25c/providers/Microsoft.Storage/storageAccounts/clitestgt3fjzabc7taya5zo","name":"clitestgt3fjzabc7taya5zo","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6675009Z","key2":"2021-04-23T07:13:20.6675009Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.5894204Z","primaryEndpoints":{"blob":"https://clitestgt3fjzabc7taya5zo.blob.core.windows.net/","queue":"https://clitestgt3fjzabc7taya5zo.queue.core.windows.net/","table":"https://clitestgt3fjzabc7taya5zo.table.core.windows.net/","file":"https://clitestgt3fjzabc7taya5zo.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptzwacrnwa/providers/Microsoft.Storage/storageAccounts/clitestivtrt5tp624n63ast","name":"clitestivtrt5tp624n63ast","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.1166795Z","key2":"2021-04-22T08:17:38.1166795Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.0541529Z","primaryEndpoints":{"blob":"https://clitestivtrt5tp624n63ast.blob.core.windows.net/","queue":"https://clitestivtrt5tp624n63ast.queue.core.windows.net/","table":"https://clitestivtrt5tp624n63ast.table.core.windows.net/","file":"https://clitestivtrt5tp624n63ast.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaz5eufnx7d/providers/Microsoft.Storage/storageAccounts/clitestkj3e2bodztqdfqsa2","name":"clitestkj3e2bodztqdfqsa2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-08T09:02:59.1361396Z","key2":"2021-12-08T09:02:59.1361396Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-08T09:02:59.1361396Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-08T09:02:59.1361396Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-08T09:02:59.0267650Z","primaryEndpoints":{"blob":"https://clitestkj3e2bodztqdfqsa2.blob.core.windows.net/","queue":"https://clitestkj3e2bodztqdfqsa2.queue.core.windows.net/","table":"https://clitestkj3e2bodztqdfqsa2.table.core.windows.net/","file":"https://clitestkj3e2bodztqdfqsa2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeghfcmpfiw/providers/Microsoft.Storage/storageAccounts/clitestkoxtfkf67yodgckyb","name":"clitestkoxtfkf67yodgckyb","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-28T10:04:35.2504002Z","key2":"2022-02-28T10:04:35.2504002Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T10:04:35.2504002Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T10:04:35.2504002Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-02-28T10:04:35.1410179Z","primaryEndpoints":{"blob":"https://clitestkoxtfkf67yodgckyb.blob.core.windows.net/","queue":"https://clitestkoxtfkf67yodgckyb.queue.core.windows.net/","table":"https://clitestkoxtfkf67yodgckyb.table.core.windows.net/","file":"https://clitestkoxtfkf67yodgckyb.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdc25pvki6m/providers/Microsoft.Storage/storageAccounts/clitestkxu4ahsqaxv42cyyf","name":"clitestkxu4ahsqaxv42cyyf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.7523496Z","key2":"2021-04-22T08:02:15.7523496Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.6742355Z","primaryEndpoints":{"blob":"https://clitestkxu4ahsqaxv42cyyf.blob.core.windows.net/","queue":"https://clitestkxu4ahsqaxv42cyyf.queue.core.windows.net/","table":"https://clitestkxu4ahsqaxv42cyyf.table.core.windows.net/","file":"https://clitestkxu4ahsqaxv42cyyf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawbqkye7l4/providers/Microsoft.Storage/storageAccounts/clitestlsjx67ujuhjr7zkah","name":"clitestlsjx67ujuhjr7zkah","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-09T04:30:23.0266730Z","key2":"2022-05-09T04:30:23.0266730Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-09T04:30:23.0266730Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-09T04:30:23.0266730Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-09T04:30:22.9172929Z","primaryEndpoints":{"blob":"https://clitestlsjx67ujuhjr7zkah.blob.core.windows.net/","queue":"https://clitestlsjx67ujuhjr7zkah.queue.core.windows.net/","table":"https://clitestlsjx67ujuhjr7zkah.table.core.windows.net/","file":"https://clitestlsjx67ujuhjr7zkah.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4chnkoo7ql/providers/Microsoft.Storage/storageAccounts/clitestmevgvn7p2e7ydqz44","name":"clitestmevgvn7p2e7ydqz44","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-08T03:32:22.3716191Z","key2":"2021-12-08T03:32:22.3716191Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-08T03:32:22.3872332Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-08T03:32:22.3872332Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-08T03:32:22.2778291Z","primaryEndpoints":{"blob":"https://clitestmevgvn7p2e7ydqz44.blob.core.windows.net/","queue":"https://clitestmevgvn7p2e7ydqz44.queue.core.windows.net/","table":"https://clitestmevgvn7p2e7ydqz44.table.core.windows.net/","file":"https://clitestmevgvn7p2e7ydqz44.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghkyqf7pb5/providers/Microsoft.Storage/storageAccounts/clitestpuea6vlqwxw6ihiws","name":"clitestpuea6vlqwxw6ihiws","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0581083Z","key2":"2021-04-23T07:13:21.0581083Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9799581Z","primaryEndpoints":{"blob":"https://clitestpuea6vlqwxw6ihiws.blob.core.windows.net/","queue":"https://clitestpuea6vlqwxw6ihiws.queue.core.windows.net/","table":"https://clitestpuea6vlqwxw6ihiws.table.core.windows.net/","file":"https://clitestpuea6vlqwxw6ihiws.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbo2ure7pgp/providers/Microsoft.Storage/storageAccounts/clitestsnv7joygpazk23npj","name":"clitestsnv7joygpazk23npj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-21T02:19:20.7474327Z","key2":"2021-05-21T02:19:20.7474327Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-21T02:19:20.6537267Z","primaryEndpoints":{"blob":"https://clitestsnv7joygpazk23npj.blob.core.windows.net/","queue":"https://clitestsnv7joygpazk23npj.queue.core.windows.net/","table":"https://clitestsnv7joygpazk23npj.table.core.windows.net/","file":"https://clitestsnv7joygpazk23npj.file.core.windows.net/"},"primaryLocation":"southeastasia","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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitestwqzjytdeun46rphfd","name":"clitestwqzjytdeun46rphfd","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:44:35.3668592Z","key2":"2021-04-23T03:44:35.3668592Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:44:35.2887580Z","primaryEndpoints":{"blob":"https://clitestwqzjytdeun46rphfd.blob.core.windows.net/","queue":"https://clitestwqzjytdeun46rphfd.queue.core.windows.net/","table":"https://clitestwqzjytdeun46rphfd.table.core.windows.net/","file":"https://clitestwqzjytdeun46rphfd.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltfej7yr4u/providers/Microsoft.Storage/storageAccounts/clitestwvsg2uskf4i7vjfto","name":"clitestwvsg2uskf4i7vjfto","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-13T07:48:30.9247776Z","key2":"2021-05-13T07:48:30.9247776Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-13T07:48:30.8309682Z","primaryEndpoints":{"blob":"https://clitestwvsg2uskf4i7vjfto.blob.core.windows.net/","queue":"https://clitestwvsg2uskf4i7vjfto.queue.core.windows.net/","table":"https://clitestwvsg2uskf4i7vjfto.table.core.windows.net/","file":"https://clitestwvsg2uskf4i7vjfto.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjznhcqaoh/providers/Microsoft.Storage/storageAccounts/clitestwznnmnfot33xjztmk","name":"clitestwznnmnfot33xjztmk","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.7299628Z","key2":"2021-04-23T07:13:20.7299628Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6518776Z","primaryEndpoints":{"blob":"https://clitestwznnmnfot33xjztmk.blob.core.windows.net/","queue":"https://clitestwznnmnfot33xjztmk.queue.core.windows.net/","table":"https://clitestwznnmnfot33xjztmk.table.core.windows.net/","file":"https://clitestwznnmnfot33xjztmk.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4yns4yxisb/providers/Microsoft.Storage/storageAccounts/clitestyt6rxgad3kebqzh26","name":"clitestyt6rxgad3kebqzh26","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.8528440Z","key2":"2021-08-05T19:49:04.8528440Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.7747435Z","primaryEndpoints":{"blob":"https://clitestyt6rxgad3kebqzh26.blob.core.windows.net/","queue":"https://clitestyt6rxgad3kebqzh26.queue.core.windows.net/","table":"https://clitestyt6rxgad3kebqzh26.table.core.windows.net/","file":"https://clitestyt6rxgad3kebqzh26.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgovptfsocfg/providers/Microsoft.Storage/storageAccounts/clitestz72bbbbv2cio2pmom","name":"clitestz72bbbbv2cio2pmom","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0112600Z","key2":"2021-04-23T07:13:21.0112600Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9330720Z","primaryEndpoints":{"blob":"https://clitestz72bbbbv2cio2pmom.blob.core.windows.net/","queue":"https://clitestz72bbbbv2cio2pmom.queue.core.windows.net/","table":"https://clitestz72bbbbv2cio2pmom.table.core.windows.net/","file":"https://clitestz72bbbbv2cio2pmom.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxp7uwuibs5/providers/Microsoft.Storage/storageAccounts/clitestzrwidkqplnw3jmz4z","name":"clitestzrwidkqplnw3jmz4z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6831653Z","key2":"2021-04-23T07:13:20.6831653Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6049571Z","primaryEndpoints":{"blob":"https://clitestzrwidkqplnw3jmz4z.blob.core.windows.net/","queue":"https://clitestzrwidkqplnw3jmz4z.queue.core.windows.net/","table":"https://clitestzrwidkqplnw3jmz4z.table.core.windows.net/","file":"https://clitestzrwidkqplnw3jmz4z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-26T05:48:15.7013062Z","key2":"2021-03-26T05:48:15.7013062Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"dfs":"https://cs1100320004dd89524.dfs.core.windows.net/","web":"https://cs1100320004dd89524.z23.web.core.windows.net/","blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320005416c8c9","name":"cs1100320005416c8c9","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-09T05:58:20.1898753Z","key2":"2021-07-09T05:58:20.1898753Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-09T05:58:20.0961322Z","primaryEndpoints":{"dfs":"https://cs1100320005416c8c9.dfs.core.windows.net/","web":"https://cs1100320005416c8c9.z23.web.core.windows.net/","blob":"https://cs1100320005416c8c9.blob.core.windows.net/","queue":"https://cs1100320005416c8c9.queue.core.windows.net/","table":"https://cs1100320005416c8c9.table.core.windows.net/","file":"https://cs1100320005416c8c9.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007b1ce356","name":"cs1100320007b1ce356","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-31T13:56:10.5497663Z","key2":"2021-08-31T13:56:10.5497663Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T13:56:10.4560533Z","primaryEndpoints":{"dfs":"https://cs1100320007b1ce356.dfs.core.windows.net/","web":"https://cs1100320007b1ce356.z23.web.core.windows.net/","blob":"https://cs1100320007b1ce356.blob.core.windows.net/","queue":"https://cs1100320007b1ce356.queue.core.windows.net/","table":"https://cs1100320007b1ce356.table.core.windows.net/","file":"https://cs1100320007b1ce356.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"dfs":"https://cs1100320007de01867.dfs.core.windows.net/","web":"https://cs1100320007de01867.z23.web.core.windows.net/","blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007f91393f","name":"cs1100320007f91393f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-01-22T18:02:15.3088372Z","key2":"2022-01-22T18:02:15.3088372Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-22T18:02:15.3088372Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-22T18:02:15.3088372Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-22T18:02:15.1681915Z","primaryEndpoints":{"dfs":"https://cs1100320007f91393f.dfs.core.windows.net/","web":"https://cs1100320007f91393f.z23.web.core.windows.net/","blob":"https://cs1100320007f91393f.blob.core.windows.net/","queue":"https://cs1100320007f91393f.queue.core.windows.net/","table":"https://cs1100320007f91393f.table.core.windows.net/","file":"https://cs1100320007f91393f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200087c55daf","name":"cs11003200087c55daf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-21T00:43:24.0011691Z","key2":"2021-07-21T00:43:24.0011691Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-21T00:43:23.9230250Z","primaryEndpoints":{"dfs":"https://cs11003200087c55daf.dfs.core.windows.net/","web":"https://cs11003200087c55daf.z23.web.core.windows.net/","blob":"https://cs11003200087c55daf.blob.core.windows.net/","queue":"https://cs11003200087c55daf.queue.core.windows.net/","table":"https://cs11003200087c55daf.table.core.windows.net/","file":"https://cs11003200087c55daf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-17T07:12:44.1132341Z","key2":"2021-03-17T07:12:44.1132341Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"dfs":"https://cs1100320008debd5bc.dfs.core.windows.net/","web":"https://cs1100320008debd5bc.z23.web.core.windows.net/","blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000919ef7c5","name":"cs110032000919ef7c5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-09T02:02:43.1652268Z","key2":"2021-10-09T02:02:43.1652268Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-09T02:02:43.0714900Z","primaryEndpoints":{"dfs":"https://cs110032000919ef7c5.dfs.core.windows.net/","web":"https://cs110032000919ef7c5.z23.web.core.windows.net/","blob":"https://cs110032000919ef7c5.blob.core.windows.net/","queue":"https://cs110032000919ef7c5.queue.core.windows.net/","table":"https://cs110032000919ef7c5.table.core.windows.net/","file":"https://cs110032000919ef7c5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-23T07:08:51.1436686Z","key2":"2021-03-23T07:08:51.1436686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"dfs":"https://cs11003200092fe0771.dfs.core.windows.net/","web":"https://cs11003200092fe0771.z23.web.core.windows.net/","blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c","name":"cs110032000b6f3c90c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-06T05:28:23.2493456Z","key2":"2021-05-06T05:28:23.2493456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-06T05:28:23.1868245Z","primaryEndpoints":{"dfs":"https://cs110032000b6f3c90c.dfs.core.windows.net/","web":"https://cs110032000b6f3c90c.z23.web.core.windows.net/","blob":"https://cs110032000b6f3c90c.blob.core.windows.net/","queue":"https://cs110032000b6f3c90c.queue.core.windows.net/","table":"https://cs110032000b6f3c90c.table.core.windows.net/","file":"https://cs110032000b6f3c90c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-15T06:39:35.4649198Z","key2":"2021-04-15T06:39:35.4649198Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"dfs":"https://cs110032000c31bae71.dfs.core.windows.net/","web":"https://cs110032000c31bae71.z23.web.core.windows.net/","blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"dfs":"https://cs110032000ca62af00.dfs.core.windows.net/","web":"https://cs110032000ca62af00.z23.web.core.windows.net/","blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000d5b642af","name":"cs110032000d5b642af","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-08-12T04:59:52.1914004Z","key2":"2022-08-12T04:59:52.1914004Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T04:59:52.2070290Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T04:59:52.2070290Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-12T04:59:52.0820281Z","primaryEndpoints":{"dfs":"https://cs110032000d5b642af.dfs.core.windows.net/","web":"https://cs110032000d5b642af.z23.web.core.windows.net/","blob":"https://cs110032000d5b642af.blob.core.windows.net/","queue":"https://cs110032000d5b642af.queue.core.windows.net/","table":"https://cs110032000d5b642af.table.core.windows.net/","file":"https://cs110032000d5b642af.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e1cb9f41","name":"cs110032000e1cb9f41","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-06-01T02:14:02.8985613Z","key2":"2021-06-01T02:14:02.8985613Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-01T02:14:02.8047066Z","primaryEndpoints":{"dfs":"https://cs110032000e1cb9f41.dfs.core.windows.net/","web":"https://cs110032000e1cb9f41.z23.web.core.windows.net/","blob":"https://cs110032000e1cb9f41.blob.core.windows.net/","queue":"https://cs110032000e1cb9f41.queue.core.windows.net/","table":"https://cs110032000e1cb9f41.table.core.windows.net/","file":"https://cs110032000e1cb9f41.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978","name":"cs110032000e3121978","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-25T07:26:43.6124221Z","key2":"2021-04-25T07:26:43.6124221Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-25T07:26:43.5343583Z","primaryEndpoints":{"dfs":"https://cs110032000e3121978.dfs.core.windows.net/","web":"https://cs110032000e3121978.z23.web.core.windows.net/","blob":"https://cs110032000e3121978.blob.core.windows.net/","queue":"https://cs110032000e3121978.queue.core.windows.net/","table":"https://cs110032000e3121978.table.core.windows.net/","file":"https://cs110032000e3121978.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000f3aac891","name":"cs110032000f3aac891","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-08T11:18:17.0122606Z","key2":"2021-10-08T11:18:17.0122606Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-08T11:18:16.9184856Z","primaryEndpoints":{"dfs":"https://cs110032000f3aac891.dfs.core.windows.net/","web":"https://cs110032000f3aac891.z23.web.core.windows.net/","blob":"https://cs110032000f3aac891.blob.core.windows.net/","queue":"https://cs110032000f3aac891.queue.core.windows.net/","table":"https://cs110032000f3aac891.table.core.windows.net/","file":"https://cs110032000f3aac891.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320010339dce7","name":"cs1100320010339dce7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-01T12:55:31.1442388Z","key2":"2021-07-01T12:55:31.1442388Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-01T12:55:31.0661165Z","primaryEndpoints":{"dfs":"https://cs1100320010339dce7.dfs.core.windows.net/","web":"https://cs1100320010339dce7.z23.web.core.windows.net/","blob":"https://cs1100320010339dce7.blob.core.windows.net/","queue":"https://cs1100320010339dce7.queue.core.windows.net/","table":"https://cs1100320010339dce7.table.core.windows.net/","file":"https://cs1100320010339dce7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-25T03:10:52.6098894Z","key2":"2021-03-25T03:10:52.6098894Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"dfs":"https://cs11003200127365c47.dfs.core.windows.net/","web":"https://cs11003200127365c47.z23.web.core.windows.net/","blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200129e38348","name":"cs11003200129e38348","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-24T06:59:16.3135399Z","key2":"2021-05-24T06:59:16.3135399Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-24T06:59:16.2198282Z","primaryEndpoints":{"dfs":"https://cs11003200129e38348.dfs.core.windows.net/","web":"https://cs11003200129e38348.z23.web.core.windows.net/","blob":"https://cs11003200129e38348.blob.core.windows.net/","queue":"https://cs11003200129e38348.queue.core.windows.net/","table":"https://cs11003200129e38348.table.core.windows.net/","file":"https://cs11003200129e38348.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-09T08:04:25.5979407Z","key2":"2021-04-09T08:04:25.5979407Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"dfs":"https://cs1100320012c36c452.dfs.core.windows.net/","web":"https://cs1100320012c36c452.z23.web.core.windows.net/","blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001520b2764","name":"cs110032001520b2764","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-09-03T08:56:46.2009376Z","key2":"2021-09-03T08:56:46.2009376Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T08:56:46.1071770Z","primaryEndpoints":{"dfs":"https://cs110032001520b2764.dfs.core.windows.net/","web":"https://cs110032001520b2764.z23.web.core.windows.net/","blob":"https://cs110032001520b2764.blob.core.windows.net/","queue":"https://cs110032001520b2764.queue.core.windows.net/","table":"https://cs110032001520b2764.table.core.windows.net/","file":"https://cs110032001520b2764.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320016ac59291","name":"cs1100320016ac59291","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-10T06:12:25.7518719Z","key2":"2021-08-10T06:12:25.7518719Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-10T06:12:25.6581170Z","primaryEndpoints":{"dfs":"https://cs1100320016ac59291.dfs.core.windows.net/","web":"https://cs1100320016ac59291.z23.web.core.windows.net/","blob":"https://cs1100320016ac59291.blob.core.windows.net/","queue":"https://cs1100320016ac59291.queue.core.windows.net/","table":"https://cs1100320016ac59291.table.core.windows.net/","file":"https://cs1100320016ac59291.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018cedbbd6","name":"cs1100320018cedbbd6","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-11-02T06:32:13.4022120Z","key2":"2021-11-02T06:32:13.4022120Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T06:32:13.3084745Z","primaryEndpoints":{"dfs":"https://cs1100320018cedbbd6.dfs.core.windows.net/","web":"https://cs1100320018cedbbd6.z23.web.core.windows.net/","blob":"https://cs1100320018cedbbd6.blob.core.windows.net/","queue":"https://cs1100320018cedbbd6.queue.core.windows.net/","table":"https://cs1100320018cedbbd6.table.core.windows.net/","file":"https://cs1100320018cedbbd6.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018db36b92","name":"cs1100320018db36b92","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-03-28T03:36:34.2370202Z","key2":"2022-03-28T03:36:34.2370202Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-28T03:36:34.2370202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-28T03:36:34.2370202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-28T03:36:34.1432960Z","primaryEndpoints":{"dfs":"https://cs1100320018db36b92.dfs.core.windows.net/","web":"https://cs1100320018db36b92.z23.web.core.windows.net/","blob":"https://cs1100320018db36b92.blob.core.windows.net/","queue":"https://cs1100320018db36b92.queue.core.windows.net/","table":"https://cs1100320018db36b92.table.core.windows.net/","file":"https://cs1100320018db36b92.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b3f915f1","name":"cs110032001b3f915f1","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-12-01T09:52:15.5623314Z","key2":"2021-12-01T09:52:15.5623314Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-01T09:52:15.5623314Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-01T09:52:15.5623314Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-01T09:52:15.4529548Z","primaryEndpoints":{"dfs":"https://cs110032001b3f915f1.dfs.core.windows.net/","web":"https://cs110032001b3f915f1.z23.web.core.windows.net/","blob":"https://cs110032001b3f915f1.blob.core.windows.net/","queue":"https://cs110032001b3f915f1.queue.core.windows.net/","table":"https://cs110032001b3f915f1.table.core.windows.net/","file":"https://cs110032001b3f915f1.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b429e302","name":"cs110032001b429e302","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-03-03T08:36:37.1925814Z","key2":"2022-03-03T08:36:37.1925814Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T08:36:37.1925814Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T08:36:37.1925814Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T08:36:37.0989854Z","primaryEndpoints":{"dfs":"https://cs110032001b429e302.dfs.core.windows.net/","web":"https://cs110032001b429e302.z23.web.core.windows.net/","blob":"https://cs110032001b429e302.blob.core.windows.net/","queue":"https://cs110032001b429e302.queue.core.windows.net/","table":"https://cs110032001b429e302.table.core.windows.net/","file":"https://cs110032001b429e302.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b42c9a19","name":"cs110032001b42c9a19","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-12-07T06:17:44.4758914Z","key2":"2021-12-07T06:17:44.4758914Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-07T06:17:44.4915329Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-07T06:17:44.4915329Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-07T06:17:44.3665152Z","primaryEndpoints":{"dfs":"https://cs110032001b42c9a19.dfs.core.windows.net/","web":"https://cs110032001b42c9a19.z23.web.core.windows.net/","blob":"https://cs110032001b42c9a19.blob.core.windows.net/","queue":"https://cs110032001b42c9a19.queue.core.windows.net/","table":"https://cs110032001b42c9a19.table.core.windows.net/","file":"https://cs110032001b42c9a19.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001c7af275f","name":"cs110032001c7af275f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-01-11T02:46:33.2282076Z","key2":"2022-01-11T02:46:33.2282076Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-11T02:46:33.2438448Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-11T02:46:33.2438448Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-11T02:46:33.1190309Z","primaryEndpoints":{"dfs":"https://cs110032001c7af275f.dfs.core.windows.net/","web":"https://cs110032001c7af275f.z23.web.core.windows.net/","blob":"https://cs110032001c7af275f.blob.core.windows.net/","queue":"https://cs110032001c7af275f.queue.core.windows.net/","table":"https://cs110032001c7af275f.table.core.windows.net/","file":"https://cs110032001c7af275f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001d33a7d6b","name":"cs110032001d33a7d6b","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-03-23T09:31:11.8736695Z","key2":"2022-03-23T09:31:11.8736695Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-23T09:31:11.8736695Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-23T09:31:11.8736695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-23T09:31:11.7641980Z","primaryEndpoints":{"dfs":"https://cs110032001d33a7d6b.dfs.core.windows.net/","web":"https://cs110032001d33a7d6b.z23.web.core.windows.net/","blob":"https://cs110032001d33a7d6b.blob.core.windows.net/","queue":"https://cs110032001d33a7d6b.queue.core.windows.net/","table":"https://cs110032001d33a7d6b.table.core.windows.net/","file":"https://cs110032001d33a7d6b.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001dbc5380d","name":"cs110032001dbc5380d","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-05-24T09:00:54.0289602Z","key2":"2022-05-24T09:00:54.0289602Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-24T09:00:54.0445000Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-24T09:00:54.0445000Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-24T09:00:53.9195518Z","primaryEndpoints":{"dfs":"https://cs110032001dbc5380d.dfs.core.windows.net/","web":"https://cs110032001dbc5380d.z23.web.core.windows.net/","blob":"https://cs110032001dbc5380d.blob.core.windows.net/","queue":"https://cs110032001dbc5380d.queue.core.windows.net/","table":"https://cs110032001dbc5380d.table.core.windows.net/","file":"https://cs110032001dbc5380d.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview/providers/Microsoft.Storage/storageAccounts/scansouthcentralusdteqbx","name":"scansouthcentralusdteqbx","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-23T06:00:34.2251607Z","key2":"2021-09-23T06:00:34.2251607Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-23T06:00:34.1313540Z","primaryEndpoints":{"dfs":"https://scansouthcentralusdteqbx.dfs.core.windows.net/","web":"https://scansouthcentralusdteqbx.z21.web.core.windows.net/","blob":"https://scansouthcentralusdteqbx.blob.core.windows.net/","queue":"https://scansouthcentralusdteqbx.queue.core.windows.net/","table":"https://scansouthcentralusdteqbx.table.core.windows.net/","file":"https://scansouthcentralusdteqbx.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"identity":{"principalId":"61cb6fdd-5399-4a58-aeee-c1c9a8a84094","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"BlobStorage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/databricks-rg-cli-test-db-create-yyhko6mu2w646/providers/Microsoft.Storage/storageAccounts/dbstorageiuxa4gtv5zxki","name":"dbstorageiuxa4gtv5zxki","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{"application":"databricks","databricks-environment":"true"},"properties":{"keyCreationTime":{"key1":"2022-08-11T10:52:46.6287515Z","key2":"2022-08-11T10:52:46.6287515Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-11T10:52:46.6442622Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-11T10:52:46.6442622Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-11T10:52:46.5192203Z","primaryEndpoints":{"dfs":"https://dbstorageiuxa4gtv5zxki.dfs.core.windows.net/","blob":"https://dbstorageiuxa4gtv5zxki.blob.core.windows.net/","table":"https://dbstorageiuxa4gtv5zxki.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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":"2021-05-14T06:47:20.1106748Z","key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"dfs":"https://fengtestsa.dfs.core.windows.net/","web":"https://fengtestsa.z19.web.core.windows.net/","blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengtestsa-secondary.dfs.core.windows.net/","web":"https://fengtestsa-secondary.z19.web.core.windows.net/","blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-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/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zytest/providers/Microsoft.Storage/storageAccounts/zyaccount","name":"zyaccount","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-30T03:04:26.4210853Z","key2":"2022-08-30T03:04:26.4210853Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-30T03:04:26.4369275Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-30T03:04:26.4369275Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-30T03:04:26.2961281Z","primaryEndpoints":{"blob":"https://zyaccount.blob.core.windows.net/","queue":"https://zyaccount.queue.core.windows.net/","table":"https://zyaccount.table.core.windows.net/","file":"https://zyaccount.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview/providers/Microsoft.Storage/storageAccounts/scanwestus2ghwdfbf","name":"scanwestus2ghwdfbf","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T03:24:36.3735480Z","key2":"2021-09-28T03:24:36.3735480Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T03:24:36.2797988Z","primaryEndpoints":{"dfs":"https://scanwestus2ghwdfbf.dfs.core.windows.net/","web":"https://scanwestus2ghwdfbf.z5.web.core.windows.net/","blob":"https://scanwestus2ghwdfbf.blob.core.windows.net/","queue":"https://scanwestus2ghwdfbf.queue.core.windows.net/","table":"https://scanwestus2ghwdfbf.table.core.windows.net/","file":"https://scanwestus2ghwdfbf.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-file-handle-rg/providers/Microsoft.Storage/storageAccounts/testfilehandlesa","name":"testfilehandlesa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-11-02T02:22:24.9147695Z","key2":"2021-11-02T02:22:24.9147695Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T02:22:24.8209748Z","primaryEndpoints":{"dfs":"https://testfilehandlesa.dfs.core.windows.net/","web":"https://testfilehandlesa.z5.web.core.windows.net/","blob":"https://testfilehandlesa.blob.core.windows.net/","queue":"https://testfilehandlesa.queue.core.windows.net/","table":"https://testfilehandlesa.table.core.windows.net/","file":"https://testfilehandlesa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testfilehandlesa-secondary.dfs.core.windows.net/","web":"https://testfilehandlesa-secondary.z5.web.core.windows.net/","blob":"https://testfilehandlesa-secondary.blob.core.windows.net/","queue":"https://testfilehandlesa-secondary.queue.core.windows.net/","table":"https://testfilehandlesa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkd6p7qbfagrujatkewfdv6h4lsnhytzynqqfrqm6cgzfvri2zxoi2f7jcluwwmjuy/providers/Microsoft.Storage/storageAccounts/clitest2zi3a2bd4s6m2hude","name":"clitest2zi3a2bd4s6m2hude","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-15T00:28:26.7739584Z","key2":"2022-07-15T00:28:26.7739584Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-15T00:28:27.3364860Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-15T00:28:27.3364860Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-15T00:28:26.6802440Z","primaryEndpoints":{"dfs":"https://clitest2zi3a2bd4s6m2hude.dfs.core.windows.net/","web":"https://clitest2zi3a2bd4s6m2hude.z3.web.core.windows.net/","blob":"https://clitest2zi3a2bd4s6m2hude.blob.core.windows.net/","queue":"https://clitest2zi3a2bd4s6m2hude.queue.core.windows.net/","table":"https://clitest2zi3a2bd4s6m2hude.table.core.windows.net/","file":"https://clitest2zi3a2bd4s6m2hude.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyddrao5pqxeaghz5kwq36baqe3ks5zxsoshwylochzolebtnbiuehsgrvwowpmasr/providers/Microsoft.Storage/storageAccounts/clitest36v46kwont5xxebu6","name":"clitest36v46kwont5xxebu6","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-19T02:04:30.4389887Z","key2":"2022-08-19T02:04:30.4389887Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:04:30.7671094Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:04:30.7671094Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-19T02:04:30.3139633Z","primaryEndpoints":{"dfs":"https://clitest36v46kwont5xxebu6.dfs.core.windows.net/","web":"https://clitest36v46kwont5xxebu6.z3.web.core.windows.net/","blob":"https://clitest36v46kwont5xxebu6.blob.core.windows.net/","queue":"https://clitest36v46kwont5xxebu6.queue.core.windows.net/","table":"https://clitest36v46kwont5xxebu6.table.core.windows.net/","file":"https://clitest36v46kwont5xxebu6.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk3dgx6acfu6yrvvipseyqbiwldnaohcywhpi65w7jys42kv5gjs2pljpz5o7bsoah/providers/Microsoft.Storage/storageAccounts/clitest3tllg4jqytzq27ejk","name":"clitest3tllg4jqytzq27ejk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:36:53.0876733Z","key2":"2021-11-01T19:36:53.0876733Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:36:53.0095332Z","primaryEndpoints":{"dfs":"https://clitest3tllg4jqytzq27ejk.dfs.core.windows.net/","web":"https://clitest3tllg4jqytzq27ejk.z3.web.core.windows.net/","blob":"https://clitest3tllg4jqytzq27ejk.blob.core.windows.net/","queue":"https://clitest3tllg4jqytzq27ejk.queue.core.windows.net/","table":"https://clitest3tllg4jqytzq27ejk.table.core.windows.net/","file":"https://clitest3tllg4jqytzq27ejk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7ywcjwwkyqro7r54bzsggg3efujfc54tpvg3pmzto2wg3ifd5i2omb2oqz4ru44b3/providers/Microsoft.Storage/storageAccounts/clitest42lr3sjjyceqm2dsa","name":"clitest42lr3sjjyceqm2dsa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-11T14:04:08.6091074Z","key2":"2022-04-11T14:04:08.6091074Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:04:08.6248156Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:04:08.6248156Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:04:08.5153865Z","primaryEndpoints":{"dfs":"https://clitest42lr3sjjyceqm2dsa.dfs.core.windows.net/","web":"https://clitest42lr3sjjyceqm2dsa.z3.web.core.windows.net/","blob":"https://clitest42lr3sjjyceqm2dsa.blob.core.windows.net/","queue":"https://clitest42lr3sjjyceqm2dsa.queue.core.windows.net/","table":"https://clitest42lr3sjjyceqm2dsa.table.core.windows.net/","file":"https://clitest42lr3sjjyceqm2dsa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg53ii7o3mvigrzaleunc7yvjyxzqsswvlh33ady7siswmzfoybwdaeovyarlr3rqok/providers/Microsoft.Storage/storageAccounts/clitest4g6zvuhalizptgwwu","name":"clitest4g6zvuhalizptgwwu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-22T00:03:34.6562181Z","key2":"2022-07-22T00:03:34.6562181Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-22T00:03:35.1249669Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-22T00:03:35.1249669Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-22T00:03:34.5468111Z","primaryEndpoints":{"dfs":"https://clitest4g6zvuhalizptgwwu.dfs.core.windows.net/","web":"https://clitest4g6zvuhalizptgwwu.z3.web.core.windows.net/","blob":"https://clitest4g6zvuhalizptgwwu.blob.core.windows.net/","queue":"https://clitest4g6zvuhalizptgwwu.queue.core.windows.net/","table":"https://clitest4g6zvuhalizptgwwu.table.core.windows.net/","file":"https://clitest4g6zvuhalizptgwwu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkgt6nin66or5swlkcbzuqqqvuatsme4t5spkwkygh4sziqlamyxv2fckdajclbire/providers/Microsoft.Storage/storageAccounts/clitest4hsuf3zwslxuux46y","name":"clitest4hsuf3zwslxuux46y","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T09:25:04.0198418Z","key2":"2022-03-16T09:25:04.0198418Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:25:04.0354560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:25:04.0354560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:25:03.8948335Z","primaryEndpoints":{"dfs":"https://clitest4hsuf3zwslxuux46y.dfs.core.windows.net/","web":"https://clitest4hsuf3zwslxuux46y.z3.web.core.windows.net/","blob":"https://clitest4hsuf3zwslxuux46y.blob.core.windows.net/","queue":"https://clitest4hsuf3zwslxuux46y.queue.core.windows.net/","table":"https://clitest4hsuf3zwslxuux46y.table.core.windows.net/","file":"https://clitest4hsuf3zwslxuux46y.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7meyhlnrfbkrxbl3dlr5scn2ifgzq3w5hrk4qgkrbhznds533fs5ueybsogfe6yff/providers/Microsoft.Storage/storageAccounts/clitest4i7ob4hsixy3piqdm","name":"clitest4i7ob4hsixy3piqdm","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-23T23:11:24.4937270Z","key2":"2022-06-23T23:11:24.4937270Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-23T23:11:24.7750173Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-23T23:11:24.7750173Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-23T23:11:24.4000060Z","primaryEndpoints":{"dfs":"https://clitest4i7ob4hsixy3piqdm.dfs.core.windows.net/","web":"https://clitest4i7ob4hsixy3piqdm.z3.web.core.windows.net/","blob":"https://clitest4i7ob4hsixy3piqdm.blob.core.windows.net/","queue":"https://clitest4i7ob4hsixy3piqdm.queue.core.windows.net/","table":"https://clitest4i7ob4hsixy3piqdm.table.core.windows.net/","file":"https://clitest4i7ob4hsixy3piqdm.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5rbhj2siyn33fb3buqv4nfrpbtszdqvkeyymdjvwdzj2tgg6z5ig5v4fsnlngl6zy/providers/Microsoft.Storage/storageAccounts/clitest4k6c57bhb3fbeaeb2","name":"clitest4k6c57bhb3fbeaeb2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-02T23:19:47.3184925Z","key2":"2021-12-02T23:19:47.3184925Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:19:47.3184925Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:19:47.3184925Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:19:47.2247436Z","primaryEndpoints":{"dfs":"https://clitest4k6c57bhb3fbeaeb2.dfs.core.windows.net/","web":"https://clitest4k6c57bhb3fbeaeb2.z3.web.core.windows.net/","blob":"https://clitest4k6c57bhb3fbeaeb2.blob.core.windows.net/","queue":"https://clitest4k6c57bhb3fbeaeb2.queue.core.windows.net/","table":"https://clitest4k6c57bhb3fbeaeb2.table.core.windows.net/","file":"https://clitest4k6c57bhb3fbeaeb2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgffzoae3m5ahiezmgpjldysvdjuvue5akjhvs3o5kg4ejrkjbvnjhtrvhk2w6n3oa3/providers/Microsoft.Storage/storageAccounts/clitest4pdszqy2diepxzn54","name":"clitest4pdszqy2diepxzn54","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-28T23:38:36.5817466Z","key2":"2022-07-28T23:38:36.5817466Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:38:37.2234580Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:38:37.2234580Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-28T23:38:36.4879931Z","primaryEndpoints":{"dfs":"https://clitest4pdszqy2diepxzn54.dfs.core.windows.net/","web":"https://clitest4pdszqy2diepxzn54.z3.web.core.windows.net/","blob":"https://clitest4pdszqy2diepxzn54.blob.core.windows.net/","queue":"https://clitest4pdszqy2diepxzn54.queue.core.windows.net/","table":"https://clitest4pdszqy2diepxzn54.table.core.windows.net/","file":"https://clitest4pdszqy2diepxzn54.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgllxoprxwjouhrzsd4vrfhqkpy7ft2fwgtiub56wonkmtvsogumww7h36czdisqqxm/providers/Microsoft.Storage/storageAccounts/clitest4slutm4qduocdiy7o","name":"clitest4slutm4qduocdiy7o","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:17:57.1095774Z","key2":"2021-11-18T23:17:57.1095774Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:57.0471042Z","primaryEndpoints":{"dfs":"https://clitest4slutm4qduocdiy7o.dfs.core.windows.net/","web":"https://clitest4slutm4qduocdiy7o.z3.web.core.windows.net/","blob":"https://clitest4slutm4qduocdiy7o.blob.core.windows.net/","queue":"https://clitest4slutm4qduocdiy7o.queue.core.windows.net/","table":"https://clitest4slutm4qduocdiy7o.table.core.windows.net/","file":"https://clitest4slutm4qduocdiy7o.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkqf4cu665yaejvrvcvhfklfoep7xw2qhgk7q5qkmosqpcdypz6aubtjovadrpefmu/providers/Microsoft.Storage/storageAccounts/clitest4ypv67tuvo34umfu5","name":"clitest4ypv67tuvo34umfu5","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-27T08:37:30.4318022Z","key2":"2021-09-27T08:37:30.4318022Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:37:30.3536782Z","primaryEndpoints":{"dfs":"https://clitest4ypv67tuvo34umfu5.dfs.core.windows.net/","web":"https://clitest4ypv67tuvo34umfu5.z3.web.core.windows.net/","blob":"https://clitest4ypv67tuvo34umfu5.blob.core.windows.net/","queue":"https://clitest4ypv67tuvo34umfu5.queue.core.windows.net/","table":"https://clitest4ypv67tuvo34umfu5.table.core.windows.net/","file":"https://clitest4ypv67tuvo34umfu5.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdug325lrcvzanqv3lzbjf3is3c3nkte77zapxydbwac3gjkwncn6mb4f7ac5quodl/providers/Microsoft.Storage/storageAccounts/clitest52hhfb76nrue6ykoz","name":"clitest52hhfb76nrue6ykoz","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T01:18:06.6255130Z","key2":"2022-03-18T01:18:06.6255130Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:18:06.6255130Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:18:06.6255130Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:18:06.5317315Z","primaryEndpoints":{"dfs":"https://clitest52hhfb76nrue6ykoz.dfs.core.windows.net/","web":"https://clitest52hhfb76nrue6ykoz.z3.web.core.windows.net/","blob":"https://clitest52hhfb76nrue6ykoz.blob.core.windows.net/","queue":"https://clitest52hhfb76nrue6ykoz.queue.core.windows.net/","table":"https://clitest52hhfb76nrue6ykoz.table.core.windows.net/","file":"https://clitest52hhfb76nrue6ykoz.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglsqzig6e5xb6f6yy7vcn6ga3cecladn475k3busnwddg7bekcbznawxwrs2fzwqsg/providers/Microsoft.Storage/storageAccounts/clitest5em3dvci6rx26joqq","name":"clitest5em3dvci6rx26joqq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-23T22:13:15.3267815Z","key2":"2021-12-23T22:13:15.3267815Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:13:15.3267815Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:13:15.3267815Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:13:15.2330713Z","primaryEndpoints":{"dfs":"https://clitest5em3dvci6rx26joqq.dfs.core.windows.net/","web":"https://clitest5em3dvci6rx26joqq.z3.web.core.windows.net/","blob":"https://clitest5em3dvci6rx26joqq.blob.core.windows.net/","queue":"https://clitest5em3dvci6rx26joqq.queue.core.windows.net/","table":"https://clitest5em3dvci6rx26joqq.table.core.windows.net/","file":"https://clitest5em3dvci6rx26joqq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2ktglaqocs7srvx2yzb2oltfjcgzfw4kudvrc374oo4nw2wkuzhlunjobg6gi3as4/providers/Microsoft.Storage/storageAccounts/clitest5tsxqn6bwkbkszmc5","name":"clitest5tsxqn6bwkbkszmc5","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-25T23:44:15.6546117Z","key2":"2022-08-25T23:44:15.6546117Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T23:44:16.2484124Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T23:44:16.2484124Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-25T23:44:15.5608674Z","primaryEndpoints":{"dfs":"https://clitest5tsxqn6bwkbkszmc5.dfs.core.windows.net/","web":"https://clitest5tsxqn6bwkbkszmc5.z3.web.core.windows.net/","blob":"https://clitest5tsxqn6bwkbkszmc5.blob.core.windows.net/","queue":"https://clitest5tsxqn6bwkbkszmc5.queue.core.windows.net/","table":"https://clitest5tsxqn6bwkbkszmc5.table.core.windows.net/","file":"https://clitest5tsxqn6bwkbkszmc5.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2xn5tbw5suxir4uuvhka5v4zfg5rmj4em2c6jceeadoa4nzc7b3bdydqwfyqiobus/providers/Microsoft.Storage/storageAccounts/clitest6pwsagzih7oocrr4x","name":"clitest6pwsagzih7oocrr4x","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-17T02:36:37.3270588Z","key2":"2022-06-17T02:36:37.3270588Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-17T02:36:37.9052175Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-17T02:36:37.9052175Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-17T02:36:37.2332988Z","primaryEndpoints":{"dfs":"https://clitest6pwsagzih7oocrr4x.dfs.core.windows.net/","web":"https://clitest6pwsagzih7oocrr4x.z3.web.core.windows.net/","blob":"https://clitest6pwsagzih7oocrr4x.blob.core.windows.net/","queue":"https://clitest6pwsagzih7oocrr4x.queue.core.windows.net/","table":"https://clitest6pwsagzih7oocrr4x.table.core.windows.net/","file":"https://clitest6pwsagzih7oocrr4x.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq5owppg4dci2qdrj7vzc5jfe2wkpqdndt73aoulpqbpqyme4ys6qp5yegc6x72nfg/providers/Microsoft.Storage/storageAccounts/clitest6xc3bnyzkpbv277hw","name":"clitest6xc3bnyzkpbv277hw","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-03T23:21:13.3577773Z","key2":"2022-03-03T23:21:13.3577773Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:21:13.3733610Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:21:13.3733610Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:21:13.2640292Z","primaryEndpoints":{"dfs":"https://clitest6xc3bnyzkpbv277hw.dfs.core.windows.net/","web":"https://clitest6xc3bnyzkpbv277hw.z3.web.core.windows.net/","blob":"https://clitest6xc3bnyzkpbv277hw.blob.core.windows.net/","queue":"https://clitest6xc3bnyzkpbv277hw.queue.core.windows.net/","table":"https://clitest6xc3bnyzkpbv277hw.table.core.windows.net/","file":"https://clitest6xc3bnyzkpbv277hw.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtzqrijjsdzepstlqsrzx5v3fvkbknlbvid5icevijobsupjxfzvc6jmmkkew4d6gc/providers/Microsoft.Storage/storageAccounts/clitest7v3uutjhsjcjiiqjk","name":"clitest7v3uutjhsjcjiiqjk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-15T14:22:54.2862227Z","key2":"2022-06-15T14:22:54.2862227Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-15T14:22:54.5205983Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-15T14:22:54.5205983Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-15T14:22:54.1612401Z","primaryEndpoints":{"dfs":"https://clitest7v3uutjhsjcjiiqjk.dfs.core.windows.net/","web":"https://clitest7v3uutjhsjcjiiqjk.z3.web.core.windows.net/","blob":"https://clitest7v3uutjhsjcjiiqjk.blob.core.windows.net/","queue":"https://clitest7v3uutjhsjcjiiqjk.queue.core.windows.net/","table":"https://clitest7v3uutjhsjcjiiqjk.table.core.windows.net/","file":"https://clitest7v3uutjhsjcjiiqjk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvricmqr6tftghdb2orhfvwwflb5yrmjlbbxfre27xo56m3yaowwocmuew3mkp6dch/providers/Microsoft.Storage/storageAccounts/clitesta6vvdbwzccmdhnmh7","name":"clitesta6vvdbwzccmdhnmh7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-10T23:46:41.0268928Z","key2":"2022-03-10T23:46:41.0268928Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-10T23:46:41.0425154Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-10T23:46:41.0425154Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-10T23:46:40.9331185Z","primaryEndpoints":{"dfs":"https://clitesta6vvdbwzccmdhnmh7.dfs.core.windows.net/","web":"https://clitesta6vvdbwzccmdhnmh7.z3.web.core.windows.net/","blob":"https://clitesta6vvdbwzccmdhnmh7.blob.core.windows.net/","queue":"https://clitesta6vvdbwzccmdhnmh7.queue.core.windows.net/","table":"https://clitesta6vvdbwzccmdhnmh7.table.core.windows.net/","file":"https://clitesta6vvdbwzccmdhnmh7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6/providers/Microsoft.Storage/storageAccounts/clitestajyrm6yrgbf4c5i2s","name":"clitestajyrm6yrgbf4c5i2s","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:36:26.5400357Z","key2":"2021-09-26T05:36:26.5400357Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:36:26.4619069Z","primaryEndpoints":{"dfs":"https://clitestajyrm6yrgbf4c5i2s.dfs.core.windows.net/","web":"https://clitestajyrm6yrgbf4c5i2s.z3.web.core.windows.net/","blob":"https://clitestajyrm6yrgbf4c5i2s.blob.core.windows.net/","queue":"https://clitestajyrm6yrgbf4c5i2s.queue.core.windows.net/","table":"https://clitestajyrm6yrgbf4c5i2s.table.core.windows.net/","file":"https://clitestajyrm6yrgbf4c5i2s.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdj7xp7djs6mthgx5vg7frkzob6fa4r4ee6jyrvgncvnjvn36lppo6bqbxzdz75tll/providers/Microsoft.Storage/storageAccounts/clitestb3umzlekxb2476otp","name":"clitestb3umzlekxb2476otp","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-21T23:03:50.2317299Z","key2":"2022-04-21T23:03:50.2317299Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:03:50.2317299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:03:50.2317299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:03:50.1379870Z","primaryEndpoints":{"dfs":"https://clitestb3umzlekxb2476otp.dfs.core.windows.net/","web":"https://clitestb3umzlekxb2476otp.z3.web.core.windows.net/","blob":"https://clitestb3umzlekxb2476otp.blob.core.windows.net/","queue":"https://clitestb3umzlekxb2476otp.queue.core.windows.net/","table":"https://clitestb3umzlekxb2476otp.table.core.windows.net/","file":"https://clitestb3umzlekxb2476otp.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaw64vj3it6oap22mn6a3srkbit3tpoizzmhlztahj2iiulsdnnv6awcybcv6ewogj/providers/Microsoft.Storage/storageAccounts/clitestbiuu3kqzs7c4mqban","name":"clitestbiuu3kqzs7c4mqban","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-19T22:48:31.9222955Z","key2":"2022-05-19T22:48:31.9222955Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-19T22:48:32.1722850Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-19T22:48:32.1722850Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-19T22:48:31.8286102Z","primaryEndpoints":{"dfs":"https://clitestbiuu3kqzs7c4mqban.dfs.core.windows.net/","web":"https://clitestbiuu3kqzs7c4mqban.z3.web.core.windows.net/","blob":"https://clitestbiuu3kqzs7c4mqban.blob.core.windows.net/","queue":"https://clitestbiuu3kqzs7c4mqban.queue.core.windows.net/","table":"https://clitestbiuu3kqzs7c4mqban.table.core.windows.net/","file":"https://clitestbiuu3kqzs7c4mqban.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglbpqpmgzjcfuaz4feleprn435rcjy72gfcclbzlno6zqjglg4vmjeekjfwp5ftczi/providers/Microsoft.Storage/storageAccounts/clitestbokalj4mocrwa4z32","name":"clitestbokalj4mocrwa4z32","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:30:16.8234389Z","key2":"2021-10-29T22:30:16.8234389Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:30:16.7453107Z","primaryEndpoints":{"dfs":"https://clitestbokalj4mocrwa4z32.dfs.core.windows.net/","web":"https://clitestbokalj4mocrwa4z32.z3.web.core.windows.net/","blob":"https://clitestbokalj4mocrwa4z32.blob.core.windows.net/","queue":"https://clitestbokalj4mocrwa4z32.queue.core.windows.net/","table":"https://clitestbokalj4mocrwa4z32.table.core.windows.net/","file":"https://clitestbokalj4mocrwa4z32.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtspw4qvairmgdzy7n5rmnqkgvofttquawuj4gqd2vfu4vovezcfc7sf547caizzrh/providers/Microsoft.Storage/storageAccounts/clitestbsembxlqwsnj2fgge","name":"clitestbsembxlqwsnj2fgge","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-07T22:55:33.1867654Z","key2":"2022-04-07T22:55:33.1867654Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T22:55:33.2023896Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T22:55:33.2023896Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T22:55:33.0930101Z","primaryEndpoints":{"dfs":"https://clitestbsembxlqwsnj2fgge.dfs.core.windows.net/","web":"https://clitestbsembxlqwsnj2fgge.z3.web.core.windows.net/","blob":"https://clitestbsembxlqwsnj2fgge.blob.core.windows.net/","queue":"https://clitestbsembxlqwsnj2fgge.queue.core.windows.net/","table":"https://clitestbsembxlqwsnj2fgge.table.core.windows.net/","file":"https://clitestbsembxlqwsnj2fgge.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgslmenloyni5hf6ungu5xnok6xazrqmqukr6gorcq64rq2u7hadght6uvzpmpbpg3u/providers/Microsoft.Storage/storageAccounts/clitestcw54yeqtizanybuwo","name":"clitestcw54yeqtizanybuwo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-14T23:27:19.9861627Z","key2":"2022-04-14T23:27:19.9861627Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0017698Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0017698Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:27:19.8923715Z","primaryEndpoints":{"dfs":"https://clitestcw54yeqtizanybuwo.dfs.core.windows.net/","web":"https://clitestcw54yeqtizanybuwo.z3.web.core.windows.net/","blob":"https://clitestcw54yeqtizanybuwo.blob.core.windows.net/","queue":"https://clitestcw54yeqtizanybuwo.queue.core.windows.net/","table":"https://clitestcw54yeqtizanybuwo.table.core.windows.net/","file":"https://clitestcw54yeqtizanybuwo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzqoxctlppqseceswyeq36zau2eysrbugzmir6vxpsztoivt4atecrszzqgzpvjalj/providers/Microsoft.Storage/storageAccounts/clitestexazhooj6txsp4bif","name":"clitestexazhooj6txsp4bif","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:28:55.7862697Z","key2":"2021-09-26T06:28:55.7862697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:28:55.7237634Z","primaryEndpoints":{"dfs":"https://clitestexazhooj6txsp4bif.dfs.core.windows.net/","web":"https://clitestexazhooj6txsp4bif.z3.web.core.windows.net/","blob":"https://clitestexazhooj6txsp4bif.blob.core.windows.net/","queue":"https://clitestexazhooj6txsp4bif.queue.core.windows.net/","table":"https://clitestexazhooj6txsp4bif.table.core.windows.net/","file":"https://clitestexazhooj6txsp4bif.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgastf744wty5rbe3b42dtbtj6m3u4njqshp3uezxwhayjl4gumhvlnx4umngpnd37j/providers/Microsoft.Storage/storageAccounts/clitestfoxs5cndjzuwfbysg","name":"clitestfoxs5cndjzuwfbysg","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T05:29:08.4012945Z","key2":"2022-03-16T05:29:08.4012945Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:29:08.4012945Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:29:08.4012945Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:29:08.3076366Z","primaryEndpoints":{"dfs":"https://clitestfoxs5cndjzuwfbysg.dfs.core.windows.net/","web":"https://clitestfoxs5cndjzuwfbysg.z3.web.core.windows.net/","blob":"https://clitestfoxs5cndjzuwfbysg.blob.core.windows.net/","queue":"https://clitestfoxs5cndjzuwfbysg.queue.core.windows.net/","table":"https://clitestfoxs5cndjzuwfbysg.table.core.windows.net/","file":"https://clitestfoxs5cndjzuwfbysg.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqgjamsip45eiod37k5ava3icxn6g65gkuyffmj7fd2ipic36deyjqhzs5f5amepjw/providers/Microsoft.Storage/storageAccounts/clitestfseuqgiqhdcp3ufhh","name":"clitestfseuqgiqhdcp3ufhh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-16T23:43:04.7242746Z","key2":"2021-12-16T23:43:04.7242746Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:43:04.7242746Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:43:04.7242746Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:43:04.6461064Z","primaryEndpoints":{"dfs":"https://clitestfseuqgiqhdcp3ufhh.dfs.core.windows.net/","web":"https://clitestfseuqgiqhdcp3ufhh.z3.web.core.windows.net/","blob":"https://clitestfseuqgiqhdcp3ufhh.blob.core.windows.net/","queue":"https://clitestfseuqgiqhdcp3ufhh.queue.core.windows.net/","table":"https://clitestfseuqgiqhdcp3ufhh.table.core.windows.net/","file":"https://clitestfseuqgiqhdcp3ufhh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz7hrj5nxaduamzjezbj6p4tni7cmywwcvi6uyksds5honxydadbriqr4xmodfqta5/providers/Microsoft.Storage/storageAccounts/clitestfuhzopy37of7eejg3","name":"clitestfuhzopy37of7eejg3","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-14T16:26:57.9366978Z","key2":"2022-08-14T16:26:57.9366978Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-14T16:26:58.6398145Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-14T16:26:58.6398145Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-14T16:26:57.6554285Z","primaryEndpoints":{"dfs":"https://clitestfuhzopy37of7eejg3.dfs.core.windows.net/","web":"https://clitestfuhzopy37of7eejg3.z3.web.core.windows.net/","blob":"https://clitestfuhzopy37of7eejg3.blob.core.windows.net/","queue":"https://clitestfuhzopy37of7eejg3.queue.core.windows.net/","table":"https://clitestfuhzopy37of7eejg3.table.core.windows.net/","file":"https://clitestfuhzopy37of7eejg3.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4bazn4hnlcnsaasp63k6nvrlmtkyo7dqcjkyopsehticnihafl57ntorbz7ixqwos/providers/Microsoft.Storage/storageAccounts/clitestgnremsz2uxbgdy6uo","name":"clitestgnremsz2uxbgdy6uo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:33:08.0149596Z","key2":"2021-11-05T08:33:08.0149596Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:33:07.9368092Z","primaryEndpoints":{"dfs":"https://clitestgnremsz2uxbgdy6uo.dfs.core.windows.net/","web":"https://clitestgnremsz2uxbgdy6uo.z3.web.core.windows.net/","blob":"https://clitestgnremsz2uxbgdy6uo.blob.core.windows.net/","queue":"https://clitestgnremsz2uxbgdy6uo.queue.core.windows.net/","table":"https://clitestgnremsz2uxbgdy6uo.table.core.windows.net/","file":"https://clitestgnremsz2uxbgdy6uo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiojjcuhfzayzrer4xt3xelo5irqyhos7zzodnkr36kccmj3tkike4hj2z333kq54w/providers/Microsoft.Storage/storageAccounts/clitestgzh5gtd7dvvavu4r7","name":"clitestgzh5gtd7dvvavu4r7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-24T23:41:39.2992459Z","key2":"2022-03-24T23:41:39.2992459Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:41:39.3148704Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:41:39.3148704Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:41:39.2057201Z","primaryEndpoints":{"dfs":"https://clitestgzh5gtd7dvvavu4r7.dfs.core.windows.net/","web":"https://clitestgzh5gtd7dvvavu4r7.z3.web.core.windows.net/","blob":"https://clitestgzh5gtd7dvvavu4r7.blob.core.windows.net/","queue":"https://clitestgzh5gtd7dvvavu4r7.queue.core.windows.net/","table":"https://clitestgzh5gtd7dvvavu4r7.table.core.windows.net/","file":"https://clitestgzh5gtd7dvvavu4r7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2tpxrzs7z6qdlv2mxxfplr6dkbzeqckqvgwrjayrdp3lriz36zbmn75vcu7kjieod/providers/Microsoft.Storage/storageAccounts/clitesth3pnvut4i3zilfkvh","name":"clitesth3pnvut4i3zilfkvh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-12T00:15:30.4913406Z","key2":"2022-08-12T00:15:30.4913406Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T00:15:31.1319714Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T00:15:31.1319714Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-12T00:15:30.3819640Z","primaryEndpoints":{"dfs":"https://clitesth3pnvut4i3zilfkvh.dfs.core.windows.net/","web":"https://clitesth3pnvut4i3zilfkvh.z3.web.core.windows.net/","blob":"https://clitesth3pnvut4i3zilfkvh.blob.core.windows.net/","queue":"https://clitesth3pnvut4i3zilfkvh.queue.core.windows.net/","table":"https://clitesth3pnvut4i3zilfkvh.table.core.windows.net/","file":"https://clitesth3pnvut4i3zilfkvh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn2hrmou3vupc7hxv534r6ythn2qz6v45svfb666d75bigid4v562yvcrcu3zvopvd/providers/Microsoft.Storage/storageAccounts/clitesthn6lf7bmqfq4lihgr","name":"clitesthn6lf7bmqfq4lihgr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:36:25.4655609Z","key2":"2021-10-22T23:36:25.4655609Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:36:25.4186532Z","primaryEndpoints":{"dfs":"https://clitesthn6lf7bmqfq4lihgr.dfs.core.windows.net/","web":"https://clitesthn6lf7bmqfq4lihgr.z3.web.core.windows.net/","blob":"https://clitesthn6lf7bmqfq4lihgr.blob.core.windows.net/","queue":"https://clitesthn6lf7bmqfq4lihgr.queue.core.windows.net/","table":"https://clitesthn6lf7bmqfq4lihgr.table.core.windows.net/","file":"https://clitesthn6lf7bmqfq4lihgr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3uh3ecchugblssjzzurmbz3fwz3si25txvdhbc3t7jo6zlnbitco2s4mnnjpqst2v/providers/Microsoft.Storage/storageAccounts/clitestif7zaqb3uji3nhacq","name":"clitestif7zaqb3uji3nhacq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-26T08:48:10.2092425Z","key2":"2022-04-26T08:48:10.2092425Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:48:10.2092425Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:48:10.2092425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:48:10.0998779Z","primaryEndpoints":{"dfs":"https://clitestif7zaqb3uji3nhacq.dfs.core.windows.net/","web":"https://clitestif7zaqb3uji3nhacq.z3.web.core.windows.net/","blob":"https://clitestif7zaqb3uji3nhacq.blob.core.windows.net/","queue":"https://clitestif7zaqb3uji3nhacq.queue.core.windows.net/","table":"https://clitestif7zaqb3uji3nhacq.table.core.windows.net/","file":"https://clitestif7zaqb3uji3nhacq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp2xbgoesryqzo5xmkyhlnevim7kqx4eogq4wkogaaq2ghaprwuoarxbgvtqfhp3vn/providers/Microsoft.Storage/storageAccounts/clitestllbgrqw2q3ll4fl2a","name":"clitestllbgrqw2q3ll4fl2a","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-18T08:33:03.9946949Z","key2":"2022-08-18T08:33:03.9946949Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T08:33:04.3071831Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T08:33:04.3071831Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-18T08:33:03.8852891Z","primaryEndpoints":{"dfs":"https://clitestllbgrqw2q3ll4fl2a.dfs.core.windows.net/","web":"https://clitestllbgrqw2q3ll4fl2a.z3.web.core.windows.net/","blob":"https://clitestllbgrqw2q3ll4fl2a.blob.core.windows.net/","queue":"https://clitestllbgrqw2q3ll4fl2a.queue.core.windows.net/","table":"https://clitestllbgrqw2q3ll4fl2a.table.core.windows.net/","file":"https://clitestllbgrqw2q3ll4fl2a.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddpmpp3buqip4f3ztkpw2okh4vd5lblxcs36olwlxmrn6hqzkgms3jgye5t72fahh/providers/Microsoft.Storage/storageAccounts/clitestlp7xyjhqdanlvdk7l","name":"clitestlp7xyjhqdanlvdk7l","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-30T22:32:05.3181693Z","key2":"2021-12-30T22:32:05.3181693Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:32:05.3181693Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:32:05.3181693Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:32:05.2244193Z","primaryEndpoints":{"dfs":"https://clitestlp7xyjhqdanlvdk7l.dfs.core.windows.net/","web":"https://clitestlp7xyjhqdanlvdk7l.z3.web.core.windows.net/","blob":"https://clitestlp7xyjhqdanlvdk7l.blob.core.windows.net/","queue":"https://clitestlp7xyjhqdanlvdk7l.queue.core.windows.net/","table":"https://clitestlp7xyjhqdanlvdk7l.table.core.windows.net/","file":"https://clitestlp7xyjhqdanlvdk7l.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiqgpdt6kvdporvteyacy5t5zw43gekna5gephtplex4buchsqnucjh24ke6ian63g/providers/Microsoft.Storage/storageAccounts/clitestlpnuh5cbq4gzlb4mt","name":"clitestlpnuh5cbq4gzlb4mt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T21:40:23.1450434Z","key2":"2022-03-17T21:40:23.1450434Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T21:40:23.1606676Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T21:40:23.1606676Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T21:40:23.0669136Z","primaryEndpoints":{"dfs":"https://clitestlpnuh5cbq4gzlb4mt.dfs.core.windows.net/","web":"https://clitestlpnuh5cbq4gzlb4mt.z3.web.core.windows.net/","blob":"https://clitestlpnuh5cbq4gzlb4mt.blob.core.windows.net/","queue":"https://clitestlpnuh5cbq4gzlb4mt.queue.core.windows.net/","table":"https://clitestlpnuh5cbq4gzlb4mt.table.core.windows.net/","file":"https://clitestlpnuh5cbq4gzlb4mt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyyky3pdv7kfgca2zw6tt2uuyakcfh4mhe5jv652ywkhjplo2g3hkpg5l5vlzmscx/providers/Microsoft.Storage/storageAccounts/clitestlrazz3fr4p7ma2aqu","name":"clitestlrazz3fr4p7ma2aqu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:26:22.0140081Z","key2":"2021-09-26T06:26:22.0140081Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:26:21.9514992Z","primaryEndpoints":{"dfs":"https://clitestlrazz3fr4p7ma2aqu.dfs.core.windows.net/","web":"https://clitestlrazz3fr4p7ma2aqu.z3.web.core.windows.net/","blob":"https://clitestlrazz3fr4p7ma2aqu.blob.core.windows.net/","queue":"https://clitestlrazz3fr4p7ma2aqu.queue.core.windows.net/","table":"https://clitestlrazz3fr4p7ma2aqu.table.core.windows.net/","file":"https://clitestlrazz3fr4p7ma2aqu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wjfol23jdbl2gkdoeiou4nae4tnyxkvqazscvbwkazi5dbugwnwlcr7gn2nvblbz/providers/Microsoft.Storage/storageAccounts/clitestlvmg3eu2v3vfviots","name":"clitestlvmg3eu2v3vfviots","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-25T00:19:23.5149380Z","key2":"2022-02-25T00:19:23.5149380Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:19:23.5305640Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:19:23.5305640Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:19:23.4055624Z","primaryEndpoints":{"dfs":"https://clitestlvmg3eu2v3vfviots.dfs.core.windows.net/","web":"https://clitestlvmg3eu2v3vfviots.z3.web.core.windows.net/","blob":"https://clitestlvmg3eu2v3vfviots.blob.core.windows.net/","queue":"https://clitestlvmg3eu2v3vfviots.queue.core.windows.net/","table":"https://clitestlvmg3eu2v3vfviots.table.core.windows.net/","file":"https://clitestlvmg3eu2v3vfviots.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgibc6w6pt2cu4nkppzr7rhgsrli5jhaumxaexydrvzpemxhixixcac5un3lkhugutn/providers/Microsoft.Storage/storageAccounts/clitestm3o7urdechvnvggxa","name":"clitestm3o7urdechvnvggxa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:04:25.7055241Z","key2":"2021-11-04T22:04:25.7055241Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:04:25.6274146Z","primaryEndpoints":{"dfs":"https://clitestm3o7urdechvnvggxa.dfs.core.windows.net/","web":"https://clitestm3o7urdechvnvggxa.z3.web.core.windows.net/","blob":"https://clitestm3o7urdechvnvggxa.blob.core.windows.net/","queue":"https://clitestm3o7urdechvnvggxa.queue.core.windows.net/","table":"https://clitestm3o7urdechvnvggxa.table.core.windows.net/","file":"https://clitestm3o7urdechvnvggxa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgod6ukvpdyodfbumzqyctb3mizfldmw7m4kczmcvtiwdw7eknpoq2uxsr3gc5qs6ia/providers/Microsoft.Storage/storageAccounts/clitestmekftj553567izfaa","name":"clitestmekftj553567izfaa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T22:40:57.9850091Z","key2":"2022-03-31T22:40:57.9850091Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:40:58.0006083Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:40:58.0006083Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:40:57.8912800Z","primaryEndpoints":{"dfs":"https://clitestmekftj553567izfaa.dfs.core.windows.net/","web":"https://clitestmekftj553567izfaa.z3.web.core.windows.net/","blob":"https://clitestmekftj553567izfaa.blob.core.windows.net/","queue":"https://clitestmekftj553567izfaa.queue.core.windows.net/","table":"https://clitestmekftj553567izfaa.table.core.windows.net/","file":"https://clitestmekftj553567izfaa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5gexz53gwezjaj2k73fecuuc4yqlddops5ntbekppouzb4x7h6bpbyvfme5nlourk/providers/Microsoft.Storage/storageAccounts/clitestmjpad5ax6f4npu3mz","name":"clitestmjpad5ax6f4npu3mz","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T08:55:42.1539279Z","key2":"2022-03-16T08:55:42.1539279Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T08:55:42.1539279Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T08:55:42.1539279Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T08:55:42.0602013Z","primaryEndpoints":{"dfs":"https://clitestmjpad5ax6f4npu3mz.dfs.core.windows.net/","web":"https://clitestmjpad5ax6f4npu3mz.z3.web.core.windows.net/","blob":"https://clitestmjpad5ax6f4npu3mz.blob.core.windows.net/","queue":"https://clitestmjpad5ax6f4npu3mz.queue.core.windows.net/","table":"https://clitestmjpad5ax6f4npu3mz.table.core.windows.net/","file":"https://clitestmjpad5ax6f4npu3mz.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf/providers/Microsoft.Storage/storageAccounts/clitestmyjybsngqmztsnzyt","name":"clitestmyjybsngqmztsnzyt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:30:18.6096170Z","key2":"2021-09-26T05:30:18.6096170Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:30:18.5314899Z","primaryEndpoints":{"dfs":"https://clitestmyjybsngqmztsnzyt.dfs.core.windows.net/","web":"https://clitestmyjybsngqmztsnzyt.z3.web.core.windows.net/","blob":"https://clitestmyjybsngqmztsnzyt.blob.core.windows.net/","queue":"https://clitestmyjybsngqmztsnzyt.queue.core.windows.net/","table":"https://clitestmyjybsngqmztsnzyt.table.core.windows.net/","file":"https://clitestmyjybsngqmztsnzyt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrhy25vxju45rn6ocljnluag55ozonubdqz2c6h3ey7iwwilqf56dk73wwpl6tz7ma/providers/Microsoft.Storage/storageAccounts/clitestn6hd6em44t54zt6vl","name":"clitestn6hd6em44t54zt6vl","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-19T02:54:14.7026149Z","key2":"2022-08-19T02:54:14.7026149Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:54:14.9213805Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:54:14.9213805Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-19T02:54:14.5932350Z","primaryEndpoints":{"dfs":"https://clitestn6hd6em44t54zt6vl.dfs.core.windows.net/","web":"https://clitestn6hd6em44t54zt6vl.z3.web.core.windows.net/","blob":"https://clitestn6hd6em44t54zt6vl.blob.core.windows.net/","queue":"https://clitestn6hd6em44t54zt6vl.queue.core.windows.net/","table":"https://clitestn6hd6em44t54zt6vl.table.core.windows.net/","file":"https://clitestn6hd6em44t54zt6vl.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2abywok236kysqgqh6yyxw5hjsmd2oiv7fmmzca4bdkfvsyhup2g3flygvn45gbtp/providers/Microsoft.Storage/storageAccounts/clitestnwqabo3kuhvx6svgt","name":"clitestnwqabo3kuhvx6svgt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-23T03:42:52.5821333Z","key2":"2022-02-23T03:42:52.5821333Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:42:52.5977587Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:42:52.5977587Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:42:52.4883542Z","primaryEndpoints":{"dfs":"https://clitestnwqabo3kuhvx6svgt.dfs.core.windows.net/","web":"https://clitestnwqabo3kuhvx6svgt.z3.web.core.windows.net/","blob":"https://clitestnwqabo3kuhvx6svgt.blob.core.windows.net/","queue":"https://clitestnwqabo3kuhvx6svgt.queue.core.windows.net/","table":"https://clitestnwqabo3kuhvx6svgt.table.core.windows.net/","file":"https://clitestnwqabo3kuhvx6svgt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbksbwoy7iftsvok2gu7el6jq32a53l75d3amp4qff74lwqen6nypkv2vsy5qpvdx6/providers/Microsoft.Storage/storageAccounts/clitestnx46jh36sfhiun4zr","name":"clitestnx46jh36sfhiun4zr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:46:06.0337216Z","key2":"2021-09-26T06:46:06.0337216Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:46:05.9555808Z","primaryEndpoints":{"dfs":"https://clitestnx46jh36sfhiun4zr.dfs.core.windows.net/","web":"https://clitestnx46jh36sfhiun4zr.z3.web.core.windows.net/","blob":"https://clitestnx46jh36sfhiun4zr.blob.core.windows.net/","queue":"https://clitestnx46jh36sfhiun4zr.queue.core.windows.net/","table":"https://clitestnx46jh36sfhiun4zr.table.core.windows.net/","file":"https://clitestnx46jh36sfhiun4zr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33fo62u6qo54y4oh6ubodzg5drtpqjvfeaxkl7eqcioetepluk6x6j2y26gadsnlb/providers/Microsoft.Storage/storageAccounts/clitestnyptbvai7mjrv4d36","name":"clitestnyptbvai7mjrv4d36","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:38:37.8872316Z","key2":"2021-09-26T06:38:37.8872316Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:38:37.8247073Z","primaryEndpoints":{"dfs":"https://clitestnyptbvai7mjrv4d36.dfs.core.windows.net/","web":"https://clitestnyptbvai7mjrv4d36.z3.web.core.windows.net/","blob":"https://clitestnyptbvai7mjrv4d36.blob.core.windows.net/","queue":"https://clitestnyptbvai7mjrv4d36.queue.core.windows.net/","table":"https://clitestnyptbvai7mjrv4d36.table.core.windows.net/","file":"https://clitestnyptbvai7mjrv4d36.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm4ewrfpsmwsfbapbb7k3cslbr34yplftoedawvzwr66vnki7qslc7yxcjg74xcdt4/providers/Microsoft.Storage/storageAccounts/clitestobi4eotlnsa6zh3bq","name":"clitestobi4eotlnsa6zh3bq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T09:39:15.5200077Z","key2":"2022-02-24T09:39:15.5200077Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.5356357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.5356357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:39:15.4262587Z","primaryEndpoints":{"dfs":"https://clitestobi4eotlnsa6zh3bq.dfs.core.windows.net/","web":"https://clitestobi4eotlnsa6zh3bq.z3.web.core.windows.net/","blob":"https://clitestobi4eotlnsa6zh3bq.blob.core.windows.net/","queue":"https://clitestobi4eotlnsa6zh3bq.queue.core.windows.net/","table":"https://clitestobi4eotlnsa6zh3bq.table.core.windows.net/","file":"https://clitestobi4eotlnsa6zh3bq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzvfnrnbiodivv7py3ttijdf62ufwz3obvcpzey36zr4h56myn3sajeenb67t2vufx/providers/Microsoft.Storage/storageAccounts/clitestokj67zonpbcy4h3ut","name":"clitestokj67zonpbcy4h3ut","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T13:51:42.3909029Z","key2":"2022-03-17T13:51:42.3909029Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T13:51:42.4065705Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T13:51:42.4065705Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T13:51:42.3127731Z","primaryEndpoints":{"dfs":"https://clitestokj67zonpbcy4h3ut.dfs.core.windows.net/","web":"https://clitestokj67zonpbcy4h3ut.z3.web.core.windows.net/","blob":"https://clitestokj67zonpbcy4h3ut.blob.core.windows.net/","queue":"https://clitestokj67zonpbcy4h3ut.queue.core.windows.net/","table":"https://clitestokj67zonpbcy4h3ut.table.core.windows.net/","file":"https://clitestokj67zonpbcy4h3ut.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg27eecv3qlcw6ol3xvlbfxfoasylnf4kby2jp2xlzkuk3skinkbsynd7fskj5fpsy3/providers/Microsoft.Storage/storageAccounts/clitestonivdoendik6ud5xu","name":"clitestonivdoendik6ud5xu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T05:25:23.2474815Z","key2":"2021-12-09T05:25:23.2474815Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:25:23.2474815Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:25:23.2474815Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:25:23.1693829Z","primaryEndpoints":{"dfs":"https://clitestonivdoendik6ud5xu.dfs.core.windows.net/","web":"https://clitestonivdoendik6ud5xu.z3.web.core.windows.net/","blob":"https://clitestonivdoendik6ud5xu.blob.core.windows.net/","queue":"https://clitestonivdoendik6ud5xu.queue.core.windows.net/","table":"https://clitestonivdoendik6ud5xu.table.core.windows.net/","file":"https://clitestonivdoendik6ud5xu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4g3f5lihvl5ymspqef7wlq3ougtwcl5cysr5hf26ft6qecpqygvuavvpaffm4jp2z/providers/Microsoft.Storage/storageAccounts/clitestppyuah3f63vji25wh","name":"clitestppyuah3f63vji25wh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T22:35:14.8304282Z","key2":"2022-02-24T22:35:14.8304282Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:35:14.8304282Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:35:14.8304282Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:35:14.7210571Z","primaryEndpoints":{"dfs":"https://clitestppyuah3f63vji25wh.dfs.core.windows.net/","web":"https://clitestppyuah3f63vji25wh.z3.web.core.windows.net/","blob":"https://clitestppyuah3f63vji25wh.blob.core.windows.net/","queue":"https://clitestppyuah3f63vji25wh.queue.core.windows.net/","table":"https://clitestppyuah3f63vji25wh.table.core.windows.net/","file":"https://clitestppyuah3f63vji25wh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxbcxx4ank64f2iixhvgd2jaf76ixz7z6ehcg4wgtoikus5rrg53sdli6a5acuxg7/providers/Microsoft.Storage/storageAccounts/clitestqltbsnaacri7pnm66","name":"clitestqltbsnaacri7pnm66","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-05T23:02:57.0468964Z","key2":"2022-05-05T23:02:57.0468964Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:02:57.0468964Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:02:57.0468964Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:02:56.9375574Z","primaryEndpoints":{"dfs":"https://clitestqltbsnaacri7pnm66.dfs.core.windows.net/","web":"https://clitestqltbsnaacri7pnm66.z3.web.core.windows.net/","blob":"https://clitestqltbsnaacri7pnm66.blob.core.windows.net/","queue":"https://clitestqltbsnaacri7pnm66.queue.core.windows.net/","table":"https://clitestqltbsnaacri7pnm66.table.core.windows.net/","file":"https://clitestqltbsnaacri7pnm66.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg64qpduwrlexqquu7nbuqpt6z2nalyqnyocfoi4qdaimlmhxln52mob3fupyseekfc/providers/Microsoft.Storage/storageAccounts/clitestreox7uet2ivegt7al","name":"clitestreox7uet2ivegt7al","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-18T16:14:49.0740745Z","key2":"2022-08-18T16:14:49.0740745Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T16:14:49.5896749Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T16:14:49.5896749Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-18T16:14:48.9646817Z","primaryEndpoints":{"dfs":"https://clitestreox7uet2ivegt7al.dfs.core.windows.net/","web":"https://clitestreox7uet2ivegt7al.z3.web.core.windows.net/","blob":"https://clitestreox7uet2ivegt7al.blob.core.windows.net/","queue":"https://clitestreox7uet2ivegt7al.queue.core.windows.net/","table":"https://clitestreox7uet2ivegt7al.table.core.windows.net/","file":"https://clitestreox7uet2ivegt7al.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj4euz2qks4a65suw4yg7q66oyuhws64hd3parve3zm7c7l5i636my5smbzk6cbvis/providers/Microsoft.Storage/storageAccounts/cliteststxx2rebwsjj4m7ev","name":"cliteststxx2rebwsjj4m7ev","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-28T22:28:46.3357090Z","key2":"2022-04-28T22:28:46.3357090Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:28:46.3357090Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:28:46.3357090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:28:46.2419469Z","primaryEndpoints":{"dfs":"https://cliteststxx2rebwsjj4m7ev.dfs.core.windows.net/","web":"https://cliteststxx2rebwsjj4m7ev.z3.web.core.windows.net/","blob":"https://cliteststxx2rebwsjj4m7ev.blob.core.windows.net/","queue":"https://cliteststxx2rebwsjj4m7ev.queue.core.windows.net/","table":"https://cliteststxx2rebwsjj4m7ev.table.core.windows.net/","file":"https://cliteststxx2rebwsjj4m7ev.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7wjguctbigk256arnwsy5cikne5rtgxsungotn3y3cp7nofxioeys2x7dtiknym2a/providers/Microsoft.Storage/storageAccounts/clitesttayxcfhxj5auoke5a","name":"clitesttayxcfhxj5auoke5a","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T23:16:25.2778969Z","key2":"2021-12-09T23:16:25.2778969Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:16:25.2778969Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:16:25.2778969Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:16:25.1841497Z","primaryEndpoints":{"dfs":"https://clitesttayxcfhxj5auoke5a.dfs.core.windows.net/","web":"https://clitesttayxcfhxj5auoke5a.z3.web.core.windows.net/","blob":"https://clitesttayxcfhxj5auoke5a.blob.core.windows.net/","queue":"https://clitesttayxcfhxj5auoke5a.queue.core.windows.net/","table":"https://clitesttayxcfhxj5auoke5a.table.core.windows.net/","file":"https://clitesttayxcfhxj5auoke5a.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxg4uxlys7uvmy36zktg7bufluyydw6zodvea3sscatxtoca52rp53hzgpu7gq5p7s/providers/Microsoft.Storage/storageAccounts/clitesttychkmvzofjn5oztq","name":"clitesttychkmvzofjn5oztq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-26T08:46:40.5509904Z","key2":"2022-04-26T08:46:40.5509904Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:46:40.5509904Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:46:40.5509904Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:46:40.4415826Z","primaryEndpoints":{"dfs":"https://clitesttychkmvzofjn5oztq.dfs.core.windows.net/","web":"https://clitesttychkmvzofjn5oztq.z3.web.core.windows.net/","blob":"https://clitesttychkmvzofjn5oztq.blob.core.windows.net/","queue":"https://clitesttychkmvzofjn5oztq.queue.core.windows.net/","table":"https://clitesttychkmvzofjn5oztq.table.core.windows.net/","file":"https://clitesttychkmvzofjn5oztq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg7tywk7mx4oyp34pr4jo76jp54xi6rrmofingxkdmix2bxupdaavsgm5bscdon7hb/providers/Microsoft.Storage/storageAccounts/clitestupama2samndokm3jd","name":"clitestupama2samndokm3jd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-28T16:48:18.7645760Z","key2":"2022-02-28T16:48:18.7645760Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T16:48:18.7802324Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T16:48:18.7802324Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T16:48:18.6864732Z","primaryEndpoints":{"dfs":"https://clitestupama2samndokm3jd.dfs.core.windows.net/","web":"https://clitestupama2samndokm3jd.z3.web.core.windows.net/","blob":"https://clitestupama2samndokm3jd.blob.core.windows.net/","queue":"https://clitestupama2samndokm3jd.queue.core.windows.net/","table":"https://clitestupama2samndokm3jd.table.core.windows.net/","file":"https://clitestupama2samndokm3jd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglqgc5xdku5ojvlcdmxmxwx4otzrvmtvwkizs74vqyuovzqgtxbocao3wxuey3ckyg/providers/Microsoft.Storage/storageAccounts/clitestvkt5uhqkknoz4z2ps","name":"clitestvkt5uhqkknoz4z2ps","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T15:56:12.2012021Z","key2":"2021-10-22T15:56:12.2012021Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:12.1387094Z","primaryEndpoints":{"dfs":"https://clitestvkt5uhqkknoz4z2ps.dfs.core.windows.net/","web":"https://clitestvkt5uhqkknoz4z2ps.z3.web.core.windows.net/","blob":"https://clitestvkt5uhqkknoz4z2ps.blob.core.windows.net/","queue":"https://clitestvkt5uhqkknoz4z2ps.queue.core.windows.net/","table":"https://clitestvkt5uhqkknoz4z2ps.table.core.windows.net/","file":"https://clitestvkt5uhqkknoz4z2ps.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb6aglzjbgktmouuijj6dzlic4zxyiyz3rvpkaagcnysqv5336hn4e4fogwqavf53q/providers/Microsoft.Storage/storageAccounts/clitestvlciwxue3ibitylva","name":"clitestvlciwxue3ibitylva","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-07T00:11:03.4133197Z","key2":"2022-01-07T00:11:03.4133197Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:11:03.4289603Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:11:03.4289603Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:11:03.3195568Z","primaryEndpoints":{"dfs":"https://clitestvlciwxue3ibitylva.dfs.core.windows.net/","web":"https://clitestvlciwxue3ibitylva.z3.web.core.windows.net/","blob":"https://clitestvlciwxue3ibitylva.blob.core.windows.net/","queue":"https://clitestvlciwxue3ibitylva.queue.core.windows.net/","table":"https://clitestvlciwxue3ibitylva.table.core.windows.net/","file":"https://clitestvlciwxue3ibitylva.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg742gmmbkzphoscnqkjjro5gelzqfg4eicwtcz7tydc6xcgjtt72ilsthdw4u2ujmd/providers/Microsoft.Storage/storageAccounts/clitestvqpk5j3bnpinywycx","name":"clitestvqpk5j3bnpinywycx","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-12T22:51:51.6556911Z","key2":"2022-05-12T22:51:51.6556911Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T22:51:51.6713107Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T22:51:51.6713107Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T22:51:51.5462900Z","primaryEndpoints":{"dfs":"https://clitestvqpk5j3bnpinywycx.dfs.core.windows.net/","web":"https://clitestvqpk5j3bnpinywycx.z3.web.core.windows.net/","blob":"https://clitestvqpk5j3bnpinywycx.blob.core.windows.net/","queue":"https://clitestvqpk5j3bnpinywycx.queue.core.windows.net/","table":"https://clitestvqpk5j3bnpinywycx.table.core.windows.net/","file":"https://clitestvqpk5j3bnpinywycx.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgutbscw3yeekpjfmbbttkbaaf5p4qvmlhnz7bzvh2mnv5pqspgkpkkxjgyahzryr7l/providers/Microsoft.Storage/storageAccounts/clitestvzas7bgpm3s6p2jre","name":"clitestvzas7bgpm3s6p2jre","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-05T00:10:31.4593666Z","key2":"2022-08-05T00:10:31.4593666Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-05T00:10:31.6781294Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-05T00:10:31.6781294Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-05T00:10:31.3499518Z","primaryEndpoints":{"dfs":"https://clitestvzas7bgpm3s6p2jre.dfs.core.windows.net/","web":"https://clitestvzas7bgpm3s6p2jre.z3.web.core.windows.net/","blob":"https://clitestvzas7bgpm3s6p2jre.blob.core.windows.net/","queue":"https://clitestvzas7bgpm3s6p2jre.queue.core.windows.net/","table":"https://clitestvzas7bgpm3s6p2jre.table.core.windows.net/","file":"https://clitestvzas7bgpm3s6p2jre.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk76ijui24h7q2foey6svr7yhnhb6tcuioxiiic7pto4b7aye52xazbtphpkn4igdg/providers/Microsoft.Storage/storageAccounts/clitestwii2xus2tgji433nh","name":"clitestwii2xus2tgji433nh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:07:45.0812213Z","key2":"2021-11-11T22:07:45.0812213Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:45.0031142Z","primaryEndpoints":{"dfs":"https://clitestwii2xus2tgji433nh.dfs.core.windows.net/","web":"https://clitestwii2xus2tgji433nh.z3.web.core.windows.net/","blob":"https://clitestwii2xus2tgji433nh.blob.core.windows.net/","queue":"https://clitestwii2xus2tgji433nh.queue.core.windows.net/","table":"https://clitestwii2xus2tgji433nh.table.core.windows.net/","file":"https://clitestwii2xus2tgji433nh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmdksg3tnpfj5ikmkrjg42qofreubpsr5cdqs5zhcezqj7v5kgrmpx525kvdqm57ya/providers/Microsoft.Storage/storageAccounts/clitesty7sgxo5udzywq7e2x","name":"clitesty7sgxo5udzywq7e2x","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-25T22:58:47.0325764Z","key2":"2021-11-25T22:58:47.0325764Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T22:58:47.0325764Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T22:58:47.0325764Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T22:58:46.9231863Z","primaryEndpoints":{"dfs":"https://clitesty7sgxo5udzywq7e2x.dfs.core.windows.net/","web":"https://clitesty7sgxo5udzywq7e2x.z3.web.core.windows.net/","blob":"https://clitesty7sgxo5udzywq7e2x.blob.core.windows.net/","queue":"https://clitesty7sgxo5udzywq7e2x.queue.core.windows.net/","table":"https://clitesty7sgxo5udzywq7e2x.table.core.windows.net/","file":"https://clitesty7sgxo5udzywq7e2x.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2s77glmcoemgtgmlcgi7repejuetyjuabg2vruyc3ayj4u66cvgdpdofhcxrql5h5/providers/Microsoft.Storage/storageAccounts/clitestycqidlsdiibjyb3t4","name":"clitestycqidlsdiibjyb3t4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T03:39:28.2566482Z","key2":"2022-03-18T03:39:28.2566482Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:39:28.2566482Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:39:28.2566482Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:39:28.1472265Z","primaryEndpoints":{"dfs":"https://clitestycqidlsdiibjyb3t4.dfs.core.windows.net/","web":"https://clitestycqidlsdiibjyb3t4.z3.web.core.windows.net/","blob":"https://clitestycqidlsdiibjyb3t4.blob.core.windows.net/","queue":"https://clitestycqidlsdiibjyb3t4.queue.core.windows.net/","table":"https://clitestycqidlsdiibjyb3t4.table.core.windows.net/","file":"https://clitestycqidlsdiibjyb3t4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrq7ijqostqq5aahlpjr7formy46bcwnloyvgqqn3ztsmo4rfypznsbm6x6wq7m4f/providers/Microsoft.Storage/storageAccounts/clitestyx33svgzm5sxgbbwr","name":"clitestyx33svgzm5sxgbbwr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T07:41:49.5764921Z","key2":"2022-03-17T07:41:49.5764921Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:41:49.5921170Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:41:49.5921170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:41:49.4827371Z","primaryEndpoints":{"dfs":"https://clitestyx33svgzm5sxgbbwr.dfs.core.windows.net/","web":"https://clitestyx33svgzm5sxgbbwr.z3.web.core.windows.net/","blob":"https://clitestyx33svgzm5sxgbbwr.blob.core.windows.net/","queue":"https://clitestyx33svgzm5sxgbbwr.queue.core.windows.net/","table":"https://clitestyx33svgzm5sxgbbwr.table.core.windows.net/","file":"https://clitestyx33svgzm5sxgbbwr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap-east/providers/Microsoft.Storage/storageAccounts/saeuapeast","name":"saeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-08-08T07:14:49.0935409Z","key2":"2022-08-08T07:14:49.0935409Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-08T07:14:49.4529176Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-08T07:14:49.4529176Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-08T07:14:48.9997460Z","primaryEndpoints":{"dfs":"https://saeuapeast.dfs.core.windows.net/","web":"https://saeuapeast.z3.web.core.windows.net/","blob":"https://saeuapeast.blob.core.windows.net/","queue":"https://saeuapeast.queue.core.windows.net/","table":"https://saeuapeast.table.core.windows.net/","file":"https://saeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://saeuapeast-secondary.dfs.core.windows.net/","web":"https://saeuapeast-secondary.z3.web.core.windows.net/","blob":"https://saeuapeast-secondary.blob.core.windows.net/","queue":"https://saeuapeast-secondary.queue.core.windows.net/","table":"https://saeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/ysdnssa","name":"ysdnssa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"dnsEndpointType":"AzureDnsZone","keyCreationTime":{"key1":"2022-04-11T06:48:10.4999157Z","key2":"2022-04-11T06:48:10.4999157Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T06:48:10.5155682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T06:48:10.5155682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T06:48:10.4217919Z","primaryEndpoints":{"dfs":"https://ysdnssa.z6.dfs.storage.azure.net/","web":"https://ysdnssa.z6.web.storage.azure.net/","blob":"https://ysdnssa.z6.blob.storage.azure.net/","queue":"https://ysdnssa.z6.queue.storage.azure.net/","table":"https://ysdnssa.z6.table.storage.azure.net/","file":"https://ysdnssa.z6.file.storage.azure.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ysdnssa-secondary.z6.dfs.storage.azure.net/","web":"https://ysdnssa-secondary.z6.web.storage.azure.net/","blob":"https://ysdnssa-secondary.z6.blob.storage.azure.net/","queue":"https://ysdnssa-secondary.z6.queue.storage.azure.net/","table":"https://ysdnssa-secondary.z6.table.storage.azure.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuapeast","name":"zhiyihuangsaeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-04-15T04:15:43.8012808Z","key2":"2022-04-15T04:15:43.8012808Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"isSftpEnabled":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-15T04:15:43.8012808Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-15T04:15:43.8012808Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-15T04:15:43.6918664Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast.table.core.windows.net/","file":"https://zhiyihuangsaeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast-secondary.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest47xrljy3nijo3qd5vzsdilpqy5gmhc6vhrxdt4iznh6uaopskftgp4scam2w7drpot4l/providers/Microsoft.Storage/storageAccounts/clitest23zhehg2ug7pzcmmt","name":"clitest23zhehg2ug7pzcmmt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:52:09.9267277Z","key2":"2021-10-22T23:52:09.9267277Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:52:09.8486094Z","primaryEndpoints":{"dfs":"https://clitest23zhehg2ug7pzcmmt.dfs.core.windows.net/","web":"https://clitest23zhehg2ug7pzcmmt.z2.web.core.windows.net/","blob":"https://clitest23zhehg2ug7pzcmmt.blob.core.windows.net/","queue":"https://clitest23zhehg2ug7pzcmmt.queue.core.windows.net/","table":"https://clitest23zhehg2ug7pzcmmt.table.core.windows.net/","file":"https://clitest23zhehg2ug7pzcmmt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuh33sdgq6xqrgmv2evfqsj7s5elfu75j425duypsq3ykwiqywcsbk7k5hm2dn6dhx3ga/providers/Microsoft.Storage/storageAccounts/clitest2dpu5cejmyr6o6fy4","name":"clitest2dpu5cejmyr6o6fy4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-13T01:03:47.8707679Z","key2":"2021-08-13T01:03:47.8707679Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-13T01:03:47.8082686Z","primaryEndpoints":{"dfs":"https://clitest2dpu5cejmyr6o6fy4.dfs.core.windows.net/","web":"https://clitest2dpu5cejmyr6o6fy4.z2.web.core.windows.net/","blob":"https://clitest2dpu5cejmyr6o6fy4.blob.core.windows.net/","queue":"https://clitest2dpu5cejmyr6o6fy4.queue.core.windows.net/","table":"https://clitest2dpu5cejmyr6o6fy4.table.core.windows.net/","file":"https://clitest2dpu5cejmyr6o6fy4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrl6kiw7ux2j73xj2v7cbet4byjrmn5uenrcnz6qfu5oxpvxtkkik2djcxys4gcpfrgr4/providers/Microsoft.Storage/storageAccounts/clitest2hc2cek5kg4wbcqwa","name":"clitest2hc2cek5kg4wbcqwa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T09:03:47.2900270Z","key2":"2021-06-18T09:03:47.2900270Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T09:03:47.2400033Z","primaryEndpoints":{"dfs":"https://clitest2hc2cek5kg4wbcqwa.dfs.core.windows.net/","web":"https://clitest2hc2cek5kg4wbcqwa.z2.web.core.windows.net/","blob":"https://clitest2hc2cek5kg4wbcqwa.blob.core.windows.net/","queue":"https://clitest2hc2cek5kg4wbcqwa.queue.core.windows.net/","table":"https://clitest2hc2cek5kg4wbcqwa.table.core.windows.net/","file":"https://clitest2hc2cek5kg4wbcqwa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwbyb7elcliee36ry67adfa656263s5nl2c67it2o2pjr3wrh5mwmg3ocygfxjou3vxa/providers/Microsoft.Storage/storageAccounts/clitest2wy5mqj7vog4cn65p","name":"clitest2wy5mqj7vog4cn65p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T16:12:01.9361563Z","key2":"2021-10-22T16:12:01.9361563Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T16:12:01.8580265Z","primaryEndpoints":{"dfs":"https://clitest2wy5mqj7vog4cn65p.dfs.core.windows.net/","web":"https://clitest2wy5mqj7vog4cn65p.z2.web.core.windows.net/","blob":"https://clitest2wy5mqj7vog4cn65p.blob.core.windows.net/","queue":"https://clitest2wy5mqj7vog4cn65p.queue.core.windows.net/","table":"https://clitest2wy5mqj7vog4cn65p.table.core.windows.net/","file":"https://clitest2wy5mqj7vog4cn65p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdaxkcyx2wq5eqkvuu4mtt5xmmxhalqrq75tosueizvrm6gr5eezaaemf3vbcujw23coc/providers/Microsoft.Storage/storageAccounts/clitest34vsfmrzin36syvg2","name":"clitest34vsfmrzin36syvg2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-18T16:11:45.9900777Z","key2":"2022-08-18T16:11:45.9900777Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T16:11:46.3650901Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T16:11:46.3650901Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-18T16:11:45.8494052Z","primaryEndpoints":{"dfs":"https://clitest34vsfmrzin36syvg2.dfs.core.windows.net/","web":"https://clitest34vsfmrzin36syvg2.z2.web.core.windows.net/","blob":"https://clitest34vsfmrzin36syvg2.blob.core.windows.net/","queue":"https://clitest34vsfmrzin36syvg2.queue.core.windows.net/","table":"https://clitest34vsfmrzin36syvg2.table.core.windows.net/","file":"https://clitest34vsfmrzin36syvg2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaars34if2f6awhrzr5vwtr2ocprv723xlflz2zxxqut3f6tqiv2hjy2l5zaj6kutqvbq/providers/Microsoft.Storage/storageAccounts/clitest3r7bin53shduexe6n","name":"clitest3r7bin53shduexe6n","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-02T23:36:46.8626538Z","key2":"2021-12-02T23:36:46.8626538Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:36:46.8782491Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:36:46.8782491Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:36:46.7845261Z","primaryEndpoints":{"dfs":"https://clitest3r7bin53shduexe6n.dfs.core.windows.net/","web":"https://clitest3r7bin53shduexe6n.z2.web.core.windows.net/","blob":"https://clitest3r7bin53shduexe6n.blob.core.windows.net/","queue":"https://clitest3r7bin53shduexe6n.queue.core.windows.net/","table":"https://clitest3r7bin53shduexe6n.table.core.windows.net/","file":"https://clitest3r7bin53shduexe6n.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7cl7lr4i2aqkz7xqie6l7rdinyf3mnvki56xtxp7x5ifryujnxskstygxdnj6pmgpf53/providers/Microsoft.Storage/storageAccounts/clitest4gmaqycfie2b5bukd","name":"clitest4gmaqycfie2b5bukd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-12T00:24:16.8079051Z","key2":"2022-08-12T00:24:16.8079051Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T00:24:17.0735601Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T00:24:17.0735601Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-12T00:24:16.6360511Z","primaryEndpoints":{"dfs":"https://clitest4gmaqycfie2b5bukd.dfs.core.windows.net/","web":"https://clitest4gmaqycfie2b5bukd.z2.web.core.windows.net/","blob":"https://clitest4gmaqycfie2b5bukd.blob.core.windows.net/","queue":"https://clitest4gmaqycfie2b5bukd.queue.core.windows.net/","table":"https://clitest4gmaqycfie2b5bukd.table.core.windows.net/","file":"https://clitest4gmaqycfie2b5bukd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesto72ftnrt7hfn5ltlqnh34e5cjvdyfwj4ny5d7yebu4imldxsoizqp5cazyouoms7ev6j/providers/Microsoft.Storage/storageAccounts/clitest4suuy3hvssqi2u3px","name":"clitest4suuy3hvssqi2u3px","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:23:05.8954115Z","key2":"2021-11-11T22:23:05.8954115Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:23:05.8172663Z","primaryEndpoints":{"dfs":"https://clitest4suuy3hvssqi2u3px.dfs.core.windows.net/","web":"https://clitest4suuy3hvssqi2u3px.z2.web.core.windows.net/","blob":"https://clitest4suuy3hvssqi2u3px.blob.core.windows.net/","queue":"https://clitest4suuy3hvssqi2u3px.queue.core.windows.net/","table":"https://clitest4suuy3hvssqi2u3px.table.core.windows.net/","file":"https://clitest4suuy3hvssqi2u3px.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestra7ouuwajkupsos3f6xg6pbwkbxdaearft7d4e35uecoopx7yzgnelmfuetvhvn4jle6/providers/Microsoft.Storage/storageAccounts/clitest55eq4q3yibnqxk2lk","name":"clitest55eq4q3yibnqxk2lk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-07T23:09:45.8237560Z","key2":"2022-04-07T23:09:45.8237560Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T23:09:45.8237560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T23:09:45.8237560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T23:09:45.7143786Z","primaryEndpoints":{"dfs":"https://clitest55eq4q3yibnqxk2lk.dfs.core.windows.net/","web":"https://clitest55eq4q3yibnqxk2lk.z2.web.core.windows.net/","blob":"https://clitest55eq4q3yibnqxk2lk.blob.core.windows.net/","queue":"https://clitest55eq4q3yibnqxk2lk.queue.core.windows.net/","table":"https://clitest55eq4q3yibnqxk2lk.table.core.windows.net/","file":"https://clitest55eq4q3yibnqxk2lk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaocausrs3iu33bd7z3atmvd3kphc6acu73ifeyvogvdgdktef736y3qrmxkdwrnraj4o/providers/Microsoft.Storage/storageAccounts/clitest5fich3ydeobhd23w2","name":"clitest5fich3ydeobhd23w2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-28T22:27:25.1198767Z","key2":"2022-04-28T22:27:25.1198767Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:27:25.1355320Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:27:25.1355320Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:27:24.9948735Z","primaryEndpoints":{"dfs":"https://clitest5fich3ydeobhd23w2.dfs.core.windows.net/","web":"https://clitest5fich3ydeobhd23w2.z2.web.core.windows.net/","blob":"https://clitest5fich3ydeobhd23w2.blob.core.windows.net/","queue":"https://clitest5fich3ydeobhd23w2.queue.core.windows.net/","table":"https://clitest5fich3ydeobhd23w2.table.core.windows.net/","file":"https://clitest5fich3ydeobhd23w2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttt33kr36k27jzupqzyvmwoyxnhhkzd57gzdkiruhhj7hmr7wi5gh32ofdsa4cm2cbigi/providers/Microsoft.Storage/storageAccounts/clitest5nfub4nyp5igwlueb","name":"clitest5nfub4nyp5igwlueb","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T22:51:11.9414791Z","key2":"2022-02-24T22:51:11.9414791Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:51:11.9414791Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:51:11.9414791Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:51:11.8477455Z","primaryEndpoints":{"dfs":"https://clitest5nfub4nyp5igwlueb.dfs.core.windows.net/","web":"https://clitest5nfub4nyp5igwlueb.z2.web.core.windows.net/","blob":"https://clitest5nfub4nyp5igwlueb.blob.core.windows.net/","queue":"https://clitest5nfub4nyp5igwlueb.queue.core.windows.net/","table":"https://clitest5nfub4nyp5igwlueb.table.core.windows.net/","file":"https://clitest5nfub4nyp5igwlueb.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestiwprlxwortgfmst4zpj5cu3mv2zhzct6sxjwpcp4kq5rblf2kje2rg3blbn5xbc4giqx/providers/Microsoft.Storage/storageAccounts/clitest6snsb5hj7n4kjsjuk","name":"clitest6snsb5hj7n4kjsjuk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-19T02:03:15.5541025Z","key2":"2022-08-19T02:03:15.5541025Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:03:15.7884788Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:03:15.7884788Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-19T02:03:15.4291361Z","primaryEndpoints":{"dfs":"https://clitest6snsb5hj7n4kjsjuk.dfs.core.windows.net/","web":"https://clitest6snsb5hj7n4kjsjuk.z2.web.core.windows.net/","blob":"https://clitest6snsb5hj7n4kjsjuk.blob.core.windows.net/","queue":"https://clitest6snsb5hj7n4kjsjuk.queue.core.windows.net/","table":"https://clitest6snsb5hj7n4kjsjuk.table.core.windows.net/","file":"https://clitest6snsb5hj7n4kjsjuk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestml55iowweb6q7xe2wje5hizd4cfs53eijje47bsf7qy5xru2fegf2adfotoitfvq7b34/providers/Microsoft.Storage/storageAccounts/clitest6tnfqsy73mo2qi6ov","name":"clitest6tnfqsy73mo2qi6ov","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-11T01:42:00.2641426Z","key2":"2022-03-11T01:42:00.2641426Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-11T01:42:00.2797581Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-11T01:42:00.2797581Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-11T01:42:00.1391781Z","primaryEndpoints":{"dfs":"https://clitest6tnfqsy73mo2qi6ov.dfs.core.windows.net/","web":"https://clitest6tnfqsy73mo2qi6ov.z2.web.core.windows.net/","blob":"https://clitest6tnfqsy73mo2qi6ov.blob.core.windows.net/","queue":"https://clitest6tnfqsy73mo2qi6ov.queue.core.windows.net/","table":"https://clitest6tnfqsy73mo2qi6ov.table.core.windows.net/","file":"https://clitest6tnfqsy73mo2qi6ov.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlg5ebdqcv52sflwjoqlwhicwckgl6uznufjdep6cezb52lt73nagcohr2yn5s2pjkddl/providers/Microsoft.Storage/storageAccounts/clitest6vxkrzgloyre3jqjs","name":"clitest6vxkrzgloyre3jqjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-23T03:10:29.4846667Z","key2":"2021-07-23T03:10:29.4846667Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-23T03:10:29.4377939Z","primaryEndpoints":{"dfs":"https://clitest6vxkrzgloyre3jqjs.dfs.core.windows.net/","web":"https://clitest6vxkrzgloyre3jqjs.z2.web.core.windows.net/","blob":"https://clitest6vxkrzgloyre3jqjs.blob.core.windows.net/","queue":"https://clitest6vxkrzgloyre3jqjs.queue.core.windows.net/","table":"https://clitest6vxkrzgloyre3jqjs.table.core.windows.net/","file":"https://clitest6vxkrzgloyre3jqjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmrngm5xnqzkfc35bpac2frhloyp5bhqs3bkzmzzsk4uxhhc5g5bilsacnxbfmtzgwe2j/providers/Microsoft.Storage/storageAccounts/clitest7bnb7msut4cjgzpbr","name":"clitest7bnb7msut4cjgzpbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:46:56.7491572Z","key2":"2021-10-29T22:46:56.7491572Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:46:56.6866372Z","primaryEndpoints":{"dfs":"https://clitest7bnb7msut4cjgzpbr.dfs.core.windows.net/","web":"https://clitest7bnb7msut4cjgzpbr.z2.web.core.windows.net/","blob":"https://clitest7bnb7msut4cjgzpbr.blob.core.windows.net/","queue":"https://clitest7bnb7msut4cjgzpbr.queue.core.windows.net/","table":"https://clitest7bnb7msut4cjgzpbr.table.core.windows.net/","file":"https://clitest7bnb7msut4cjgzpbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5pxpr64tqxefi4kgvuh5z3cmr3srlor6oj3om2ehpxbkm7orzvfbgqagtooojquptagq/providers/Microsoft.Storage/storageAccounts/clitesta23vfo64epdjcu3ot","name":"clitesta23vfo64epdjcu3ot","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T05:20:46.8438078Z","key2":"2021-12-09T05:20:46.8438078Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:20:46.8594509Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:20:46.8594509Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:20:46.7656986Z","primaryEndpoints":{"dfs":"https://clitesta23vfo64epdjcu3ot.dfs.core.windows.net/","web":"https://clitesta23vfo64epdjcu3ot.z2.web.core.windows.net/","blob":"https://clitesta23vfo64epdjcu3ot.blob.core.windows.net/","queue":"https://clitesta23vfo64epdjcu3ot.queue.core.windows.net/","table":"https://clitesta23vfo64epdjcu3ot.table.core.windows.net/","file":"https://clitesta23vfo64epdjcu3ot.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkcuipcz3pt2cibpgeifzrgfyzqdvsmwkw55s6of5em2ayvaozqx7seepqe3qotzz66dq/providers/Microsoft.Storage/storageAccounts/clitestapjrxhw5tbshhpa5r","name":"clitestapjrxhw5tbshhpa5r","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-19T23:04:56.1808242Z","key2":"2022-05-19T23:04:56.1808242Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-19T23:04:56.1808242Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-19T23:04:56.1808242Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-19T23:04:56.0558227Z","primaryEndpoints":{"dfs":"https://clitestapjrxhw5tbshhpa5r.dfs.core.windows.net/","web":"https://clitestapjrxhw5tbshhpa5r.z2.web.core.windows.net/","blob":"https://clitestapjrxhw5tbshhpa5r.blob.core.windows.net/","queue":"https://clitestapjrxhw5tbshhpa5r.queue.core.windows.net/","table":"https://clitestapjrxhw5tbshhpa5r.table.core.windows.net/","file":"https://clitestapjrxhw5tbshhpa5r.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestpyyrggpop6t2eifpvaicw2npacscf5smrsegi7gjeb6arklcmy2poh32b757t4k7eyxm/providers/Microsoft.Storage/storageAccounts/clitestb5yxhpa3shv5y6e6y","name":"clitestb5yxhpa3shv5y6e6y","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-15T14:36:56.2144260Z","key2":"2022-06-15T14:36:56.2144260Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-15T14:36:56.2144260Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-15T14:36:56.2144260Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-15T14:36:56.0894550Z","primaryEndpoints":{"dfs":"https://clitestb5yxhpa3shv5y6e6y.dfs.core.windows.net/","web":"https://clitestb5yxhpa3shv5y6e6y.z2.web.core.windows.net/","blob":"https://clitestb5yxhpa3shv5y6e6y.blob.core.windows.net/","queue":"https://clitestb5yxhpa3shv5y6e6y.queue.core.windows.net/","table":"https://clitestb5yxhpa3shv5y6e6y.table.core.windows.net/","file":"https://clitestb5yxhpa3shv5y6e6y.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcioaekrdcac3gfopptjaajefdj423bny2ijiohhlstguyjbz7ey5yopzt3glfk3wu22c/providers/Microsoft.Storage/storageAccounts/clitestbajwfvucqjul4yvoq","name":"clitestbajwfvucqjul4yvoq","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T05:43:59.4080912Z","key2":"2022-03-16T05:43:59.4080912Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:43:59.4237194Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:43:59.4237194Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:43:59.3143640Z","primaryEndpoints":{"dfs":"https://clitestbajwfvucqjul4yvoq.dfs.core.windows.net/","web":"https://clitestbajwfvucqjul4yvoq.z2.web.core.windows.net/","blob":"https://clitestbajwfvucqjul4yvoq.blob.core.windows.net/","queue":"https://clitestbajwfvucqjul4yvoq.queue.core.windows.net/","table":"https://clitestbajwfvucqjul4yvoq.table.core.windows.net/","file":"https://clitestbajwfvucqjul4yvoq.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestef6eejui2ry622mc6zf2nvoemmdy7t3minir53pkvaii6ftsyufmbwzcwdomdg4ybrb6/providers/Microsoft.Storage/storageAccounts/clitestcnrkbgnvxvtoswnwk","name":"clitestcnrkbgnvxvtoswnwk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T03:54:10.8298714Z","key2":"2022-03-18T03:54:10.8298714Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:54:10.8298714Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:54:10.8298714Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:54:10.7204974Z","primaryEndpoints":{"dfs":"https://clitestcnrkbgnvxvtoswnwk.dfs.core.windows.net/","web":"https://clitestcnrkbgnvxvtoswnwk.z2.web.core.windows.net/","blob":"https://clitestcnrkbgnvxvtoswnwk.blob.core.windows.net/","queue":"https://clitestcnrkbgnvxvtoswnwk.queue.core.windows.net/","table":"https://clitestcnrkbgnvxvtoswnwk.table.core.windows.net/","file":"https://clitestcnrkbgnvxvtoswnwk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfwybg5aqnlewkvelizobsdyy6zocpnnltod4k5d6l62rlz3wfkmdpz7fcw3xbvo45lad/providers/Microsoft.Storage/storageAccounts/clitestdk7kvmf5lss5lltse","name":"clitestdk7kvmf5lss5lltse","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T03:24:22.5335528Z","key2":"2021-06-21T03:24:22.5335528Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T03:24:22.4635745Z","primaryEndpoints":{"dfs":"https://clitestdk7kvmf5lss5lltse.dfs.core.windows.net/","web":"https://clitestdk7kvmf5lss5lltse.z2.web.core.windows.net/","blob":"https://clitestdk7kvmf5lss5lltse.blob.core.windows.net/","queue":"https://clitestdk7kvmf5lss5lltse.queue.core.windows.net/","table":"https://clitestdk7kvmf5lss5lltse.table.core.windows.net/","file":"https://clitestdk7kvmf5lss5lltse.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestem5kabxlxhdb6zfxdhtqgoaa4f5fgadqcvzwbxjv4i3tpl7cazs3yx46oidsxdy77cy2/providers/Microsoft.Storage/storageAccounts/clitestdu2ev4t4zoit7bvqi","name":"clitestdu2ev4t4zoit7bvqi","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-23T03:41:00.1525213Z","key2":"2022-02-23T03:41:00.1525213Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:41:00.1682236Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:41:00.1682236Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:41:00.0743945Z","primaryEndpoints":{"dfs":"https://clitestdu2ev4t4zoit7bvqi.dfs.core.windows.net/","web":"https://clitestdu2ev4t4zoit7bvqi.z2.web.core.windows.net/","blob":"https://clitestdu2ev4t4zoit7bvqi.blob.core.windows.net/","queue":"https://clitestdu2ev4t4zoit7bvqi.queue.core.windows.net/","table":"https://clitestdu2ev4t4zoit7bvqi.table.core.windows.net/","file":"https://clitestdu2ev4t4zoit7bvqi.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnxak6zvgtto64ihvpqeb6k6axceeskjnygs6kmirhy7t3ea2fixecjhr7i4qckpqpso/providers/Microsoft.Storage/storageAccounts/clitesteabyzaucegm7asmdy","name":"clitesteabyzaucegm7asmdy","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T22:56:30.5353621Z","key2":"2022-03-31T22:56:30.5353621Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:56:30.5510033Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:56:30.5510033Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:56:30.4416480Z","primaryEndpoints":{"dfs":"https://clitesteabyzaucegm7asmdy.dfs.core.windows.net/","web":"https://clitesteabyzaucegm7asmdy.z2.web.core.windows.net/","blob":"https://clitesteabyzaucegm7asmdy.blob.core.windows.net/","queue":"https://clitesteabyzaucegm7asmdy.queue.core.windows.net/","table":"https://clitesteabyzaucegm7asmdy.table.core.windows.net/","file":"https://clitesteabyzaucegm7asmdy.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestitvqgal52p4psfil24fzt3bed3ggoi6homqb65uwqtwqytvatpymshlg6xdxbb2y2xun/providers/Microsoft.Storage/storageAccounts/clitesteg772nlczvaz5acxj","name":"clitesteg772nlczvaz5acxj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-12T23:25:35.3422645Z","key2":"2022-05-12T23:25:35.3422645Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T23:25:35.3422645Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T23:25:35.3422645Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T23:25:35.2172397Z","primaryEndpoints":{"dfs":"https://clitesteg772nlczvaz5acxj.dfs.core.windows.net/","web":"https://clitesteg772nlczvaz5acxj.z2.web.core.windows.net/","blob":"https://clitesteg772nlczvaz5acxj.blob.core.windows.net/","queue":"https://clitesteg772nlczvaz5acxj.queue.core.windows.net/","table":"https://clitesteg772nlczvaz5acxj.table.core.windows.net/","file":"https://clitesteg772nlczvaz5acxj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2flspylari7vfylgymexf5iaunl34uxkauktagueyymzxgzsim2w2vvkkloc4jehwbnz/providers/Microsoft.Storage/storageAccounts/clitestemr7dqkgd62ulieu3","name":"clitestemr7dqkgd62ulieu3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-28T23:38:04.5243204Z","key2":"2022-07-28T23:38:04.5243204Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:38:04.7742915Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:38:04.7742915Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-28T23:38:04.3993080Z","primaryEndpoints":{"dfs":"https://clitestemr7dqkgd62ulieu3.dfs.core.windows.net/","web":"https://clitestemr7dqkgd62ulieu3.z2.web.core.windows.net/","blob":"https://clitestemr7dqkgd62ulieu3.blob.core.windows.net/","queue":"https://clitestemr7dqkgd62ulieu3.queue.core.windows.net/","table":"https://clitestemr7dqkgd62ulieu3.table.core.windows.net/","file":"https://clitestemr7dqkgd62ulieu3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrsohgzweguh5sbmc2pqtpljjtbr4rlmjxyb4o7tw4t7hvlyykdycmrbgf6qs6xqkj62m/providers/Microsoft.Storage/storageAccounts/clitestf7mh2cn2ofizivexr","name":"clitestf7mh2cn2ofizivexr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-18T08:29:57.4730340Z","key2":"2022-08-18T08:29:57.4730340Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T08:29:57.8168026Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T08:29:57.8168026Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-18T08:29:57.3324285Z","primaryEndpoints":{"dfs":"https://clitestf7mh2cn2ofizivexr.dfs.core.windows.net/","web":"https://clitestf7mh2cn2ofizivexr.z2.web.core.windows.net/","blob":"https://clitestf7mh2cn2ofizivexr.blob.core.windows.net/","queue":"https://clitestf7mh2cn2ofizivexr.queue.core.windows.net/","table":"https://clitestf7mh2cn2ofizivexr.table.core.windows.net/","file":"https://clitestf7mh2cn2ofizivexr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaplqr3c25xdddlwukirxixwo5byw5rkls3kr5fo66qoamflxrkjhxpt27enj7wmk2yuj/providers/Microsoft.Storage/storageAccounts/clitestfbytzu7syzfrmr7kf","name":"clitestfbytzu7syzfrmr7kf","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:22:45.3374456Z","key2":"2021-11-04T22:22:45.3374456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:22:45.2593440Z","primaryEndpoints":{"dfs":"https://clitestfbytzu7syzfrmr7kf.dfs.core.windows.net/","web":"https://clitestfbytzu7syzfrmr7kf.z2.web.core.windows.net/","blob":"https://clitestfbytzu7syzfrmr7kf.blob.core.windows.net/","queue":"https://clitestfbytzu7syzfrmr7kf.queue.core.windows.net/","table":"https://clitestfbytzu7syzfrmr7kf.table.core.windows.net/","file":"https://clitestfbytzu7syzfrmr7kf.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwhxadwesuwxcw3oci5pchhqwqwmcqiriqymhru2exjji6ax7focfxa2wpmd3xbxtaq3t/providers/Microsoft.Storage/storageAccounts/clitestftms76siovw6xle6l","name":"clitestftms76siovw6xle6l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-24T23:55:00.0445344Z","key2":"2022-03-24T23:55:00.0445344Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:55:00.0601285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:55:00.0601285Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:54:59.9351597Z","primaryEndpoints":{"dfs":"https://clitestftms76siovw6xle6l.dfs.core.windows.net/","web":"https://clitestftms76siovw6xle6l.z2.web.core.windows.net/","blob":"https://clitestftms76siovw6xle6l.blob.core.windows.net/","queue":"https://clitestftms76siovw6xle6l.queue.core.windows.net/","table":"https://clitestftms76siovw6xle6l.table.core.windows.net/","file":"https://clitestftms76siovw6xle6l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7yubzobtgqqoviarcco22mlfkafuvu32s3o4dfts54zzanzbsl5ip7rzaxzgigg7ijta/providers/Microsoft.Storage/storageAccounts/clitestg6yfm7cgxhb4ewrdd","name":"clitestg6yfm7cgxhb4ewrdd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-26T08:45:50.1646651Z","key2":"2022-04-26T08:45:50.1646651Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:45:50.1646651Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:45:50.1646651Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:45:50.0553084Z","primaryEndpoints":{"dfs":"https://clitestg6yfm7cgxhb4ewrdd.dfs.core.windows.net/","web":"https://clitestg6yfm7cgxhb4ewrdd.z2.web.core.windows.net/","blob":"https://clitestg6yfm7cgxhb4ewrdd.blob.core.windows.net/","queue":"https://clitestg6yfm7cgxhb4ewrdd.queue.core.windows.net/","table":"https://clitestg6yfm7cgxhb4ewrdd.table.core.windows.net/","file":"https://clitestg6yfm7cgxhb4ewrdd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmf7nhc2b7xj4ixozvacoyhu5txvmpbvnechdktpac6dpdx3ckv6jt6vebrkl24rzui4n/providers/Microsoft.Storage/storageAccounts/clitestgqwqxremngb73a7d4","name":"clitestgqwqxremngb73a7d4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-05T23:00:55.1151173Z","key2":"2022-05-05T23:00:55.1151173Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:00:55.1151173Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:00:55.1151173Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:00:54.9900949Z","primaryEndpoints":{"dfs":"https://clitestgqwqxremngb73a7d4.dfs.core.windows.net/","web":"https://clitestgqwqxremngb73a7d4.z2.web.core.windows.net/","blob":"https://clitestgqwqxremngb73a7d4.blob.core.windows.net/","queue":"https://clitestgqwqxremngb73a7d4.queue.core.windows.net/","table":"https://clitestgqwqxremngb73a7d4.table.core.windows.net/","file":"https://clitestgqwqxremngb73a7d4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkmydtxqqwqds5d67vdbrwtk32xdryjsxq6fp74nse75bdhdla7mh47b6myevefnapwyx/providers/Microsoft.Storage/storageAccounts/clitestgqwsejh46zuqlc5pm","name":"clitestgqwsejh46zuqlc5pm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-06T05:27:12.7993484Z","key2":"2021-08-06T05:27:12.7993484Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-06T05:27:12.7368799Z","primaryEndpoints":{"dfs":"https://clitestgqwsejh46zuqlc5pm.dfs.core.windows.net/","web":"https://clitestgqwsejh46zuqlc5pm.z2.web.core.windows.net/","blob":"https://clitestgqwsejh46zuqlc5pm.blob.core.windows.net/","queue":"https://clitestgqwsejh46zuqlc5pm.queue.core.windows.net/","table":"https://clitestgqwsejh46zuqlc5pm.table.core.windows.net/","file":"https://clitestgqwsejh46zuqlc5pm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestumpqlcfhjrqokmcud3ilwtvxyfowdjypjqgyymcf4whtgbq2gzzq6f2rqs66ll4mjgzm/providers/Microsoft.Storage/storageAccounts/clitestgu6cs7lus5a567u57","name":"clitestgu6cs7lus5a567u57","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T09:14:06.5832387Z","key2":"2022-03-16T09:14:06.5832387Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:14:06.5832387Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:14:06.5832387Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:14:06.4894945Z","primaryEndpoints":{"dfs":"https://clitestgu6cs7lus5a567u57.dfs.core.windows.net/","web":"https://clitestgu6cs7lus5a567u57.z2.web.core.windows.net/","blob":"https://clitestgu6cs7lus5a567u57.blob.core.windows.net/","queue":"https://clitestgu6cs7lus5a567u57.queue.core.windows.net/","table":"https://clitestgu6cs7lus5a567u57.table.core.windows.net/","file":"https://clitestgu6cs7lus5a567u57.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestndsnnd5ibnsjkzl7w5mbaujjmelonc2xjmyrd325iiwno27u6sxcxkewjeox2x2wr633/providers/Microsoft.Storage/storageAccounts/clitestgz6nb4it72a36mdpt","name":"clitestgz6nb4it72a36mdpt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-20T02:02:00.4577106Z","key2":"2021-08-20T02:02:00.4577106Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-20T02:02:00.3952449Z","primaryEndpoints":{"dfs":"https://clitestgz6nb4it72a36mdpt.dfs.core.windows.net/","web":"https://clitestgz6nb4it72a36mdpt.z2.web.core.windows.net/","blob":"https://clitestgz6nb4it72a36mdpt.blob.core.windows.net/","queue":"https://clitestgz6nb4it72a36mdpt.queue.core.windows.net/","table":"https://clitestgz6nb4it72a36mdpt.table.core.windows.net/","file":"https://clitestgz6nb4it72a36mdpt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrotlxgumszwk5pic6m6a3i32kt75g2qc43u3fpyn5ny7ozajmn73cprurofgq53idavu/providers/Microsoft.Storage/storageAccounts/clitesthvi6za73pdnet4pdh","name":"clitesthvi6za73pdnet4pdh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-15T00:41:55.6182738Z","key2":"2022-07-15T00:41:55.6182738Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-15T00:41:56.0089249Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-15T00:41:56.0089249Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-15T00:41:55.4620198Z","primaryEndpoints":{"dfs":"https://clitesthvi6za73pdnet4pdh.dfs.core.windows.net/","web":"https://clitesthvi6za73pdnet4pdh.z2.web.core.windows.net/","blob":"https://clitesthvi6za73pdnet4pdh.blob.core.windows.net/","queue":"https://clitesthvi6za73pdnet4pdh.queue.core.windows.net/","table":"https://clitesthvi6za73pdnet4pdh.table.core.windows.net/","file":"https://clitesthvi6za73pdnet4pdh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestn4htsp3pg7ss7lmzhcljejgtykexcvsnpgv6agwecgmuu6ckzau64qsjr7huw7yjt7xp/providers/Microsoft.Storage/storageAccounts/clitestixj25nsrxwuhditis","name":"clitestixj25nsrxwuhditis","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-25T00:34:17.1563369Z","key2":"2022-02-25T00:34:17.1563369Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:34:17.1719415Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:34:17.1719415Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:34:17.0626105Z","primaryEndpoints":{"dfs":"https://clitestixj25nsrxwuhditis.dfs.core.windows.net/","web":"https://clitestixj25nsrxwuhditis.z2.web.core.windows.net/","blob":"https://clitestixj25nsrxwuhditis.blob.core.windows.net/","queue":"https://clitestixj25nsrxwuhditis.queue.core.windows.net/","table":"https://clitestixj25nsrxwuhditis.table.core.windows.net/","file":"https://clitestixj25nsrxwuhditis.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestgq2rbt5t5uv3qy2hasu5gvqrlzozx6vzerszimnby4ybqtp5fmecaxj3to5iemnt7zxi/providers/Microsoft.Storage/storageAccounts/clitestl3yjfwd43tngr3lc3","name":"clitestl3yjfwd43tngr3lc3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-14T23:27:20.0298879Z","key2":"2022-04-14T23:27:20.0298879Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0298879Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0298879Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:27:19.9204650Z","primaryEndpoints":{"dfs":"https://clitestl3yjfwd43tngr3lc3.dfs.core.windows.net/","web":"https://clitestl3yjfwd43tngr3lc3.z2.web.core.windows.net/","blob":"https://clitestl3yjfwd43tngr3lc3.blob.core.windows.net/","queue":"https://clitestl3yjfwd43tngr3lc3.queue.core.windows.net/","table":"https://clitestl3yjfwd43tngr3lc3.table.core.windows.net/","file":"https://clitestl3yjfwd43tngr3lc3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestepy64dgrtly4yjibvcoccnejqyhiq4x7o6p7agna5wsmlycai7yxgi3cq3r2y6obgwfd/providers/Microsoft.Storage/storageAccounts/clitestld7574jebhj62dtvt","name":"clitestld7574jebhj62dtvt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-07T00:25:44.6498481Z","key2":"2022-01-07T00:25:44.6498481Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:25:44.6498481Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:25:44.6498481Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:25:44.5717202Z","primaryEndpoints":{"dfs":"https://clitestld7574jebhj62dtvt.dfs.core.windows.net/","web":"https://clitestld7574jebhj62dtvt.z2.web.core.windows.net/","blob":"https://clitestld7574jebhj62dtvt.blob.core.windows.net/","queue":"https://clitestld7574jebhj62dtvt.queue.core.windows.net/","table":"https://clitestld7574jebhj62dtvt.table.core.windows.net/","file":"https://clitestld7574jebhj62dtvt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestp5tcxahtvl6aa72hi7stjq5jf52e6pomwtrblva65dei2ftuqpruyn4w4twv7rqj3idw/providers/Microsoft.Storage/storageAccounts/clitestljawlm4h73ws6xqet","name":"clitestljawlm4h73ws6xqet","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-30T22:47:49.0810388Z","key2":"2021-12-30T22:47:49.0810388Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:47:49.0966383Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:47:49.0966383Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:47:48.9404345Z","primaryEndpoints":{"dfs":"https://clitestljawlm4h73ws6xqet.dfs.core.windows.net/","web":"https://clitestljawlm4h73ws6xqet.z2.web.core.windows.net/","blob":"https://clitestljawlm4h73ws6xqet.blob.core.windows.net/","queue":"https://clitestljawlm4h73ws6xqet.queue.core.windows.net/","table":"https://clitestljawlm4h73ws6xqet.table.core.windows.net/","file":"https://clitestljawlm4h73ws6xqet.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsc4q5ncei7qimmmmtqmedt4valwfif74bbu7mdfwqimzfzfkopwgrmua7p4rcsga53m4/providers/Microsoft.Storage/storageAccounts/clitestlssboc5vg5mdivn4h","name":"clitestlssboc5vg5mdivn4h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T08:34:36.9887468Z","key2":"2021-06-18T08:34:36.9887468Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T08:34:36.9237913Z","primaryEndpoints":{"dfs":"https://clitestlssboc5vg5mdivn4h.dfs.core.windows.net/","web":"https://clitestlssboc5vg5mdivn4h.z2.web.core.windows.net/","blob":"https://clitestlssboc5vg5mdivn4h.blob.core.windows.net/","queue":"https://clitestlssboc5vg5mdivn4h.queue.core.windows.net/","table":"https://clitestlssboc5vg5mdivn4h.table.core.windows.net/","file":"https://clitestlssboc5vg5mdivn4h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5yatgcl7dfear3v3e5d5hrqbpo5bdotmwoq7auiuykmzx74is6rzhkib56ajwf5ghxrk/providers/Microsoft.Storage/storageAccounts/clitestlzfflnot5wnc3y4j3","name":"clitestlzfflnot5wnc3y4j3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:21:02.0736425Z","key2":"2021-09-28T02:21:02.0736425Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:21:02.0267640Z","primaryEndpoints":{"dfs":"https://clitestlzfflnot5wnc3y4j3.dfs.core.windows.net/","web":"https://clitestlzfflnot5wnc3y4j3.z2.web.core.windows.net/","blob":"https://clitestlzfflnot5wnc3y4j3.blob.core.windows.net/","queue":"https://clitestlzfflnot5wnc3y4j3.queue.core.windows.net/","table":"https://clitestlzfflnot5wnc3y4j3.table.core.windows.net/","file":"https://clitestlzfflnot5wnc3y4j3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4uclirqb3ls66vfea6dckw3hj5kaextm324ugnbkquibcn2rck7b7gmrmql55g3zknff/providers/Microsoft.Storage/storageAccounts/clitestm4jcw64slbkeds52p","name":"clitestm4jcw64slbkeds52p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-21T23:03:20.8663156Z","key2":"2022-04-21T23:03:20.8663156Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:03:20.8663156Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:03:20.8663156Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:03:20.7413381Z","primaryEndpoints":{"dfs":"https://clitestm4jcw64slbkeds52p.dfs.core.windows.net/","web":"https://clitestm4jcw64slbkeds52p.z2.web.core.windows.net/","blob":"https://clitestm4jcw64slbkeds52p.blob.core.windows.net/","queue":"https://clitestm4jcw64slbkeds52p.queue.core.windows.net/","table":"https://clitestm4jcw64slbkeds52p.table.core.windows.net/","file":"https://clitestm4jcw64slbkeds52p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest6q54l25xpde6kfnauzzkpfgepjiio73onycgbulqkawkv5wcigbnnhzv7uao7abedoer/providers/Microsoft.Storage/storageAccounts/clitestm5bj2p5ajecznrca6","name":"clitestm5bj2p5ajecznrca6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T01:35:33.3327243Z","key2":"2022-03-18T01:35:33.3327243Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:35:33.3503663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:35:33.3503663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:35:33.2545964Z","primaryEndpoints":{"dfs":"https://clitestm5bj2p5ajecznrca6.dfs.core.windows.net/","web":"https://clitestm5bj2p5ajecznrca6.z2.web.core.windows.net/","blob":"https://clitestm5bj2p5ajecznrca6.blob.core.windows.net/","queue":"https://clitestm5bj2p5ajecznrca6.queue.core.windows.net/","table":"https://clitestm5bj2p5ajecznrca6.table.core.windows.net/","file":"https://clitestm5bj2p5ajecznrca6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestjkw7fpanpscpileddbqrrrkjrtb5xi47wmvttkiqwsqcuo3ldvzszwso3x4c5apy6m5o/providers/Microsoft.Storage/storageAccounts/clitestm6u3xawj3qsydpfam","name":"clitestm6u3xawj3qsydpfam","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T07:13:03.1496586Z","key2":"2021-09-07T07:13:03.1496586Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T07:13:03.0714932Z","primaryEndpoints":{"dfs":"https://clitestm6u3xawj3qsydpfam.dfs.core.windows.net/","web":"https://clitestm6u3xawj3qsydpfam.z2.web.core.windows.net/","blob":"https://clitestm6u3xawj3qsydpfam.blob.core.windows.net/","queue":"https://clitestm6u3xawj3qsydpfam.queue.core.windows.net/","table":"https://clitestm6u3xawj3qsydpfam.table.core.windows.net/","file":"https://clitestm6u3xawj3qsydpfam.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlasgl5zx6ikvcbociiykbocsytte2lohfxvpwhwimcc3vbrjjyw6bfbdr2vnimlyhqqi/providers/Microsoft.Storage/storageAccounts/clitestmmrdf65b6iyccd46o","name":"clitestmmrdf65b6iyccd46o","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T23:31:23.3308560Z","key2":"2021-12-09T23:31:23.3308560Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:31:23.3308560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:31:23.3308560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:31:23.2526784Z","primaryEndpoints":{"dfs":"https://clitestmmrdf65b6iyccd46o.dfs.core.windows.net/","web":"https://clitestmmrdf65b6iyccd46o.z2.web.core.windows.net/","blob":"https://clitestmmrdf65b6iyccd46o.blob.core.windows.net/","queue":"https://clitestmmrdf65b6iyccd46o.queue.core.windows.net/","table":"https://clitestmmrdf65b6iyccd46o.table.core.windows.net/","file":"https://clitestmmrdf65b6iyccd46o.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvilxen5dzbyerye5umdunqblbkglgcffizxusyzmgifnuy5xzu67t3fokkh6osaqqyyj/providers/Microsoft.Storage/storageAccounts/clitestoueypfkdm2ub7n246","name":"clitestoueypfkdm2ub7n246","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T07:57:05.8690860Z","key2":"2022-03-17T07:57:05.8690860Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:57:05.8847136Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:57:05.8847136Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:57:05.7597303Z","primaryEndpoints":{"dfs":"https://clitestoueypfkdm2ub7n246.dfs.core.windows.net/","web":"https://clitestoueypfkdm2ub7n246.z2.web.core.windows.net/","blob":"https://clitestoueypfkdm2ub7n246.blob.core.windows.net/","queue":"https://clitestoueypfkdm2ub7n246.queue.core.windows.net/","table":"https://clitestoueypfkdm2ub7n246.table.core.windows.net/","file":"https://clitestoueypfkdm2ub7n246.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcnbbt3dvwtzd7t2de25yso3n2gs6i7mqnfloe5myghvfjc5hddzlwkxbotwgt5utz23p/providers/Microsoft.Storage/storageAccounts/clitestoyv4k5wezlz5652m7","name":"clitestoyv4k5wezlz5652m7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-17T02:53:25.7560574Z","key2":"2022-06-17T02:53:25.7560574Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-17T02:53:25.7716595Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-17T02:53:25.7716595Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-17T02:53:25.6154142Z","primaryEndpoints":{"dfs":"https://clitestoyv4k5wezlz5652m7.dfs.core.windows.net/","web":"https://clitestoyv4k5wezlz5652m7.z2.web.core.windows.net/","blob":"https://clitestoyv4k5wezlz5652m7.blob.core.windows.net/","queue":"https://clitestoyv4k5wezlz5652m7.queue.core.windows.net/","table":"https://clitestoyv4k5wezlz5652m7.table.core.windows.net/","file":"https://clitestoyv4k5wezlz5652m7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsj327gmwrgwnkd4b6njrwwecha4ubjtppnfsju33z344or7vt5wd57l7tszqdaejv6qh/providers/Microsoft.Storage/storageAccounts/clitestq3r2jm4nkkd3n5mnu","name":"clitestq3r2jm4nkkd3n5mnu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-05T00:18:31.4846003Z","key2":"2022-08-05T00:18:31.4846003Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-05T00:18:31.9377362Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-05T00:18:31.9377362Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-05T00:18:31.3595999Z","primaryEndpoints":{"dfs":"https://clitestq3r2jm4nkkd3n5mnu.dfs.core.windows.net/","web":"https://clitestq3r2jm4nkkd3n5mnu.z2.web.core.windows.net/","blob":"https://clitestq3r2jm4nkkd3n5mnu.blob.core.windows.net/","queue":"https://clitestq3r2jm4nkkd3n5mnu.queue.core.windows.net/","table":"https://clitestq3r2jm4nkkd3n5mnu.table.core.windows.net/","file":"https://clitestq3r2jm4nkkd3n5mnu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvabzmquoslc3mtf5h3qd7dglwx45me4yxyefaw4ktsf7fbc3bx2tl75tdn5eqbgd3atx/providers/Microsoft.Storage/storageAccounts/clitestq7ur4vdqkjvy2rdgj","name":"clitestq7ur4vdqkjvy2rdgj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:27:14.4071914Z","key2":"2021-09-28T02:27:14.4071914Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:27:14.3446978Z","primaryEndpoints":{"dfs":"https://clitestq7ur4vdqkjvy2rdgj.dfs.core.windows.net/","web":"https://clitestq7ur4vdqkjvy2rdgj.z2.web.core.windows.net/","blob":"https://clitestq7ur4vdqkjvy2rdgj.blob.core.windows.net/","queue":"https://clitestq7ur4vdqkjvy2rdgj.queue.core.windows.net/","table":"https://clitestq7ur4vdqkjvy2rdgj.table.core.windows.net/","file":"https://clitestq7ur4vdqkjvy2rdgj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestugd6g2jxyo5mu6uxhc4zea4ygi2iuubouzxmdyuz6srnvrbwlidbvuu4qdieuwg4xlsr/providers/Microsoft.Storage/storageAccounts/clitestqorauf75d5yqkhdhc","name":"clitestqorauf75d5yqkhdhc","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-03T02:52:09.6342752Z","key2":"2021-09-03T02:52:09.6342752Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T02:52:09.5561638Z","primaryEndpoints":{"dfs":"https://clitestqorauf75d5yqkhdhc.dfs.core.windows.net/","web":"https://clitestqorauf75d5yqkhdhc.z2.web.core.windows.net/","blob":"https://clitestqorauf75d5yqkhdhc.blob.core.windows.net/","queue":"https://clitestqorauf75d5yqkhdhc.queue.core.windows.net/","table":"https://clitestqorauf75d5yqkhdhc.table.core.windows.net/","file":"https://clitestqorauf75d5yqkhdhc.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestixw7rtta5a356httmdosgg7qubvcaouftsvknfhvqqhqwftebu7jy5r27pprk7ctdnwp/providers/Microsoft.Storage/storageAccounts/clitestri5mezafhuqqzpn5f","name":"clitestri5mezafhuqqzpn5f","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T09:35:27.4649472Z","key2":"2022-03-16T09:35:27.4649472Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:35:27.4649472Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:35:27.4649472Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:35:27.3868241Z","primaryEndpoints":{"dfs":"https://clitestri5mezafhuqqzpn5f.dfs.core.windows.net/","web":"https://clitestri5mezafhuqqzpn5f.z2.web.core.windows.net/","blob":"https://clitestri5mezafhuqqzpn5f.blob.core.windows.net/","queue":"https://clitestri5mezafhuqqzpn5f.queue.core.windows.net/","table":"https://clitestri5mezafhuqqzpn5f.table.core.windows.net/","file":"https://clitestri5mezafhuqqzpn5f.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestevsaicktnjgl5cxsdgqxunvrpbz3b5kiwem5aupvcn666xqibcydgkcmqom7wfe3dapu/providers/Microsoft.Storage/storageAccounts/clitestrjmnbaleto4rtnerx","name":"clitestrjmnbaleto4rtnerx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T14:10:11.3863047Z","key2":"2022-03-17T14:10:11.3863047Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T14:10:11.3863047Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T14:10:11.3863047Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T14:10:11.2769522Z","primaryEndpoints":{"dfs":"https://clitestrjmnbaleto4rtnerx.dfs.core.windows.net/","web":"https://clitestrjmnbaleto4rtnerx.z2.web.core.windows.net/","blob":"https://clitestrjmnbaleto4rtnerx.blob.core.windows.net/","queue":"https://clitestrjmnbaleto4rtnerx.queue.core.windows.net/","table":"https://clitestrjmnbaleto4rtnerx.table.core.windows.net/","file":"https://clitestrjmnbaleto4rtnerx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4r6levc5rrhybrqdpa7ji574v5syh473mkechmyeuub52k5ppe6jpwdn4ummj5zz4dls/providers/Microsoft.Storage/storageAccounts/clitestrloxav4ddvzysochv","name":"clitestrloxav4ddvzysochv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-28T17:02:12.4537885Z","key2":"2022-02-28T17:02:12.4537885Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T17:02:12.4693878Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T17:02:12.4693878Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T17:02:12.3756824Z","primaryEndpoints":{"dfs":"https://clitestrloxav4ddvzysochv.dfs.core.windows.net/","web":"https://clitestrloxav4ddvzysochv.z2.web.core.windows.net/","blob":"https://clitestrloxav4ddvzysochv.blob.core.windows.net/","queue":"https://clitestrloxav4ddvzysochv.queue.core.windows.net/","table":"https://clitestrloxav4ddvzysochv.table.core.windows.net/","file":"https://clitestrloxav4ddvzysochv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestzbuh7m7bllna7xosjhxr5ppfs6tnukxctfm4ydkzmzvyt7tf2ru3yjmthwy6mqqp62yy/providers/Microsoft.Storage/storageAccounts/clitestrpsk56xwloumq6ngj","name":"clitestrpsk56xwloumq6ngj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T05:52:26.0729783Z","key2":"2021-06-21T05:52:26.0729783Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T05:52:26.0129686Z","primaryEndpoints":{"dfs":"https://clitestrpsk56xwloumq6ngj.dfs.core.windows.net/","web":"https://clitestrpsk56xwloumq6ngj.z2.web.core.windows.net/","blob":"https://clitestrpsk56xwloumq6ngj.blob.core.windows.net/","queue":"https://clitestrpsk56xwloumq6ngj.queue.core.windows.net/","table":"https://clitestrpsk56xwloumq6ngj.table.core.windows.net/","file":"https://clitestrpsk56xwloumq6ngj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvjv33kuh5emihpapvtmm2rvht3tzrvzj3l7pygfh2yfwrlsqrgth2qfth6eylgrcnc2v/providers/Microsoft.Storage/storageAccounts/clitestrynzkqk7indncjb6c","name":"clitestrynzkqk7indncjb6c","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-03T23:37:22.5048830Z","key2":"2022-03-03T23:37:22.5048830Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:37:22.5205069Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:37:22.5205069Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:37:22.4111374Z","primaryEndpoints":{"dfs":"https://clitestrynzkqk7indncjb6c.dfs.core.windows.net/","web":"https://clitestrynzkqk7indncjb6c.z2.web.core.windows.net/","blob":"https://clitestrynzkqk7indncjb6c.blob.core.windows.net/","queue":"https://clitestrynzkqk7indncjb6c.queue.core.windows.net/","table":"https://clitestrynzkqk7indncjb6c.table.core.windows.net/","file":"https://clitestrynzkqk7indncjb6c.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3dson3a62z7n3t273by34bdkoa3bdosbrwqb6iwpygxslz6qc3jfeirp57b7zgufmnqk/providers/Microsoft.Storage/storageAccounts/clitests4scvwk2agr6ufpu3","name":"clitests4scvwk2agr6ufpu3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T09:55:14.9729032Z","key2":"2022-02-24T09:55:14.9729032Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:55:14.9729032Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:55:14.9729032Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:55:14.8791923Z","primaryEndpoints":{"dfs":"https://clitests4scvwk2agr6ufpu3.dfs.core.windows.net/","web":"https://clitests4scvwk2agr6ufpu3.z2.web.core.windows.net/","blob":"https://clitests4scvwk2agr6ufpu3.blob.core.windows.net/","queue":"https://clitests4scvwk2agr6ufpu3.queue.core.windows.net/","table":"https://clitests4scvwk2agr6ufpu3.table.core.windows.net/","file":"https://clitests4scvwk2agr6ufpu3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlmm4hekch44v2jjs6g7whi3qbgamfmevxrpjihfokewye7h3suswarq4mw5gdmosfj2y/providers/Microsoft.Storage/storageAccounts/clitests6o6rszcmwmsvtcwx","name":"clitests6o6rszcmwmsvtcwx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-11T14:15:04.1323335Z","key2":"2022-04-11T14:15:04.1323335Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:15:04.1479441Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:15:04.1479441Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:15:04.0385481Z","primaryEndpoints":{"dfs":"https://clitests6o6rszcmwmsvtcwx.dfs.core.windows.net/","web":"https://clitests6o6rszcmwmsvtcwx.z2.web.core.windows.net/","blob":"https://clitests6o6rszcmwmsvtcwx.blob.core.windows.net/","queue":"https://clitests6o6rszcmwmsvtcwx.queue.core.windows.net/","table":"https://clitests6o6rszcmwmsvtcwx.table.core.windows.net/","file":"https://clitests6o6rszcmwmsvtcwx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest62jxvr4odko5gn5tjo4z7ypmirid6zm72g3ah6zg25qh5r5xve5fhikdcnjpxvsaikhl/providers/Microsoft.Storage/storageAccounts/clitestst2iwgltnfj4zoiva","name":"clitestst2iwgltnfj4zoiva","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-27T01:58:18.2723177Z","key2":"2021-08-27T01:58:18.2723177Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-27T01:58:18.2410749Z","primaryEndpoints":{"dfs":"https://clitestst2iwgltnfj4zoiva.dfs.core.windows.net/","web":"https://clitestst2iwgltnfj4zoiva.z2.web.core.windows.net/","blob":"https://clitestst2iwgltnfj4zoiva.blob.core.windows.net/","queue":"https://clitestst2iwgltnfj4zoiva.queue.core.windows.net/","table":"https://clitestst2iwgltnfj4zoiva.table.core.windows.net/","file":"https://clitestst2iwgltnfj4zoiva.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestqqus2xas5sl4htgx2ev4bhu3lxjpkejupglkxwe3cxmbgv65vz5cdduhnn2de5v5vzd5/providers/Microsoft.Storage/storageAccounts/clitesttrel7vnpc5dinlpqy","name":"clitesttrel7vnpc5dinlpqy","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-25T23:43:10.0638555Z","key2":"2022-08-25T23:43:10.0638555Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T23:43:10.2982408Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T23:43:10.2982408Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-25T23:43:09.9232350Z","primaryEndpoints":{"dfs":"https://clitesttrel7vnpc5dinlpqy.dfs.core.windows.net/","web":"https://clitesttrel7vnpc5dinlpqy.z2.web.core.windows.net/","blob":"https://clitesttrel7vnpc5dinlpqy.blob.core.windows.net/","queue":"https://clitesttrel7vnpc5dinlpqy.queue.core.windows.net/","table":"https://clitesttrel7vnpc5dinlpqy.table.core.windows.net/","file":"https://clitesttrel7vnpc5dinlpqy.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestxk2peoqt7nd76ktof7sub3mkkcldygtt36d3imnwjd5clletodypibd5uaglpdk44yjm/providers/Microsoft.Storage/storageAccounts/clitestu6whdalngwsksemjs","name":"clitestu6whdalngwsksemjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-10T02:29:23.5697486Z","key2":"2021-09-10T02:29:23.5697486Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T02:29:23.5072536Z","primaryEndpoints":{"dfs":"https://clitestu6whdalngwsksemjs.dfs.core.windows.net/","web":"https://clitestu6whdalngwsksemjs.z2.web.core.windows.net/","blob":"https://clitestu6whdalngwsksemjs.blob.core.windows.net/","queue":"https://clitestu6whdalngwsksemjs.queue.core.windows.net/","table":"https://clitestu6whdalngwsksemjs.table.core.windows.net/","file":"https://clitestu6whdalngwsksemjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestso6t4hpogf5y47thn6pcvkyr3q7vlshzebjjlol4bdv3fmskm6fr5qutj77lbcad4b2b/providers/Microsoft.Storage/storageAccounts/clitestuwirxbmysh2gsi45z","name":"clitestuwirxbmysh2gsi45z","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-23T23:37:58.6797770Z","key2":"2022-06-23T23:37:58.6797770Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-23T23:37:58.6797770Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-23T23:37:58.6797770Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-23T23:37:58.5391421Z","primaryEndpoints":{"dfs":"https://clitestuwirxbmysh2gsi45z.dfs.core.windows.net/","web":"https://clitestuwirxbmysh2gsi45z.z2.web.core.windows.net/","blob":"https://clitestuwirxbmysh2gsi45z.blob.core.windows.net/","queue":"https://clitestuwirxbmysh2gsi45z.queue.core.windows.net/","table":"https://clitestuwirxbmysh2gsi45z.table.core.windows.net/","file":"https://clitestuwirxbmysh2gsi45z.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwbzchpbjgcxxskmdhphtbzptfkqdlzhapbqla2v27iw54pevob7yanyz7ppmmigrhtkk/providers/Microsoft.Storage/storageAccounts/clitestvuslwcarkk3sdmgga","name":"clitestvuslwcarkk3sdmgga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-25T23:14:55.4674102Z","key2":"2021-11-25T23:14:55.4674102Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T23:14:55.4674102Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T23:14:55.4674102Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T23:14:55.3892927Z","primaryEndpoints":{"dfs":"https://clitestvuslwcarkk3sdmgga.dfs.core.windows.net/","web":"https://clitestvuslwcarkk3sdmgga.z2.web.core.windows.net/","blob":"https://clitestvuslwcarkk3sdmgga.blob.core.windows.net/","queue":"https://clitestvuslwcarkk3sdmgga.queue.core.windows.net/","table":"https://clitestvuslwcarkk3sdmgga.table.core.windows.net/","file":"https://clitestvuslwcarkk3sdmgga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlriqfcojv6aujusys633edrxi3tkric7e6cvk5wwgjmdg4736dv56w4lwzmdnq5tr3mq/providers/Microsoft.Storage/storageAccounts/clitestw6aumidrfwmoqkzvm","name":"clitestw6aumidrfwmoqkzvm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:32:38.8527397Z","key2":"2021-11-18T23:32:38.8527397Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:32:38.7902807Z","primaryEndpoints":{"dfs":"https://clitestw6aumidrfwmoqkzvm.dfs.core.windows.net/","web":"https://clitestw6aumidrfwmoqkzvm.z2.web.core.windows.net/","blob":"https://clitestw6aumidrfwmoqkzvm.blob.core.windows.net/","queue":"https://clitestw6aumidrfwmoqkzvm.queue.core.windows.net/","table":"https://clitestw6aumidrfwmoqkzvm.table.core.windows.net/","file":"https://clitestw6aumidrfwmoqkzvm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestreufd5cqee3zivebxym7cxi57izubkyszpgf3xlnt4bsit2x6ptggeuh6qiwu4jvwhd5/providers/Microsoft.Storage/storageAccounts/clitestwbzje3s6lhe5qaq5l","name":"clitestwbzje3s6lhe5qaq5l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-23T22:28:23.6667592Z","key2":"2021-12-23T22:28:23.6667592Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:28:23.6822263Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:28:23.6822263Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:28:23.5884630Z","primaryEndpoints":{"dfs":"https://clitestwbzje3s6lhe5qaq5l.dfs.core.windows.net/","web":"https://clitestwbzje3s6lhe5qaq5l.z2.web.core.windows.net/","blob":"https://clitestwbzje3s6lhe5qaq5l.blob.core.windows.net/","queue":"https://clitestwbzje3s6lhe5qaq5l.queue.core.windows.net/","table":"https://clitestwbzje3s6lhe5qaq5l.table.core.windows.net/","file":"https://clitestwbzje3s6lhe5qaq5l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttlschpyugymorheodsulam7yhpwylijzpbmjr3phwwis4vj2rx5elxcjkb236fcnumx3/providers/Microsoft.Storage/storageAccounts/clitestwv22naweyfr4m5rga","name":"clitestwv22naweyfr4m5rga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:54:26.9185866Z","key2":"2021-11-01T19:54:26.9185866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:54:26.8717369Z","primaryEndpoints":{"dfs":"https://clitestwv22naweyfr4m5rga.dfs.core.windows.net/","web":"https://clitestwv22naweyfr4m5rga.z2.web.core.windows.net/","blob":"https://clitestwv22naweyfr4m5rga.blob.core.windows.net/","queue":"https://clitestwv22naweyfr4m5rga.queue.core.windows.net/","table":"https://clitestwv22naweyfr4m5rga.table.core.windows.net/","file":"https://clitestwv22naweyfr4m5rga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth52efeutldrxowe5cfayjvk4zhpypdmky6fyppzro5r3ldqu7dwf2ca6jf3lqm4eijf6/providers/Microsoft.Storage/storageAccounts/clitestx5fskzfbidzs4kqmu","name":"clitestx5fskzfbidzs4kqmu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:48:16.0575682Z","key2":"2021-11-05T08:48:16.0575682Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:48:15.9794412Z","primaryEndpoints":{"dfs":"https://clitestx5fskzfbidzs4kqmu.dfs.core.windows.net/","web":"https://clitestx5fskzfbidzs4kqmu.z2.web.core.windows.net/","blob":"https://clitestx5fskzfbidzs4kqmu.blob.core.windows.net/","queue":"https://clitestx5fskzfbidzs4kqmu.queue.core.windows.net/","table":"https://clitestx5fskzfbidzs4kqmu.table.core.windows.net/","file":"https://clitestx5fskzfbidzs4kqmu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesti6qxvg2pnr4ox6h5c3q3rihq5r56452igsbp6tpbubyok4cabvhryfo7fuvf2je57mlq/providers/Microsoft.Storage/storageAccounts/clitestxa37jvyubsj4yssqf","name":"clitestxa37jvyubsj4yssqf","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-19T02:53:27.8549195Z","key2":"2022-08-19T02:53:27.8549195Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:53:28.1205092Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:53:28.1205092Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-19T02:53:27.7142914Z","primaryEndpoints":{"dfs":"https://clitestxa37jvyubsj4yssqf.dfs.core.windows.net/","web":"https://clitestxa37jvyubsj4yssqf.z2.web.core.windows.net/","blob":"https://clitestxa37jvyubsj4yssqf.blob.core.windows.net/","queue":"https://clitestxa37jvyubsj4yssqf.queue.core.windows.net/","table":"https://clitestxa37jvyubsj4yssqf.table.core.windows.net/","file":"https://clitestxa37jvyubsj4yssqf.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsfkcdnkd2xngtxma6yip2hrfxcljs3dtv4p6teg457mlhyruamnayv7ejk3e264tbsue/providers/Microsoft.Storage/storageAccounts/clitestxc5fs7nomr2dnwv5h","name":"clitestxc5fs7nomr2dnwv5h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-16T23:57:25.5009113Z","key2":"2021-12-16T23:57:25.5009113Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:57:25.5009113Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:57:25.5009113Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:57:25.4227819Z","primaryEndpoints":{"dfs":"https://clitestxc5fs7nomr2dnwv5h.dfs.core.windows.net/","web":"https://clitestxc5fs7nomr2dnwv5h.z2.web.core.windows.net/","blob":"https://clitestxc5fs7nomr2dnwv5h.blob.core.windows.net/","queue":"https://clitestxc5fs7nomr2dnwv5h.queue.core.windows.net/","table":"https://clitestxc5fs7nomr2dnwv5h.table.core.windows.net/","file":"https://clitestxc5fs7nomr2dnwv5h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuapcrhybuggyatduocbydgd2xgdyuaj26awe5rksptnbf2uz7rbjt5trh6gj3q3jv23u/providers/Microsoft.Storage/storageAccounts/clitestxueoehnvkkqr6h434","name":"clitestxueoehnvkkqr6h434","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T22:09:26.4376958Z","key2":"2022-03-17T22:09:26.4376958Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T22:09:26.4376958Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T22:09:26.4376958Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T22:09:26.3282727Z","primaryEndpoints":{"dfs":"https://clitestxueoehnvkkqr6h434.dfs.core.windows.net/","web":"https://clitestxueoehnvkkqr6h434.z2.web.core.windows.net/","blob":"https://clitestxueoehnvkkqr6h434.blob.core.windows.net/","queue":"https://clitestxueoehnvkkqr6h434.queue.core.windows.net/","table":"https://clitestxueoehnvkkqr6h434.table.core.windows.net/","file":"https://clitestxueoehnvkkqr6h434.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest22jkeprwd3lxhlyqisxtj7yaqkbxjwc46syhcbh3y75hshuspxh6d26ixzu67ht2sjhr/providers/Microsoft.Storage/storageAccounts/clitestyizsohp6lh6zuhgpd","name":"clitestyizsohp6lh6zuhgpd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-22T00:02:28.7597703Z","key2":"2022-07-22T00:02:28.7597703Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-22T00:02:29.0253981Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-22T00:02:29.0253981Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-22T00:02:28.6348202Z","primaryEndpoints":{"dfs":"https://clitestyizsohp6lh6zuhgpd.dfs.core.windows.net/","web":"https://clitestyizsohp6lh6zuhgpd.z2.web.core.windows.net/","blob":"https://clitestyizsohp6lh6zuhgpd.blob.core.windows.net/","queue":"https://clitestyizsohp6lh6zuhgpd.queue.core.windows.net/","table":"https://clitestyizsohp6lh6zuhgpd.table.core.windows.net/","file":"https://clitestyizsohp6lh6zuhgpd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuuzapuumij7y2c5htx335t3nfvqfcjte7oti4odgy3ypszafy5aoft4iutszykqzfavy/providers/Microsoft.Storage/storageAccounts/clitestyqkk5hfglq7mjf773","name":"clitestyqkk5hfglq7mjf773","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-14T16:24:10.7172742Z","key2":"2022-08-14T16:24:10.7172742Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-14T16:24:11.0453913Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-14T16:24:11.0453913Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-14T16:24:10.5922597Z","primaryEndpoints":{"dfs":"https://clitestyqkk5hfglq7mjf773.dfs.core.windows.net/","web":"https://clitestyqkk5hfglq7mjf773.z2.web.core.windows.net/","blob":"https://clitestyqkk5hfglq7mjf773.blob.core.windows.net/","queue":"https://clitestyqkk5hfglq7mjf773.queue.core.windows.net/","table":"https://clitestyqkk5hfglq7mjf773.table.core.windows.net/","file":"https://clitestyqkk5hfglq7mjf773.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlnzg2rscuyweetdgvywse35jkhd3s7gay3wnjzoyqojyq6i3iw42uycss45mj52zitnl/providers/Microsoft.Storage/storageAccounts/clitestzarcstbcgg3yqinfg","name":"clitestzarcstbcgg3yqinfg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-30T02:23:46.1127669Z","key2":"2021-07-30T02:23:46.1127669Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-30T02:23:46.0658902Z","primaryEndpoints":{"dfs":"https://clitestzarcstbcgg3yqinfg.dfs.core.windows.net/","web":"https://clitestzarcstbcgg3yqinfg.z2.web.core.windows.net/","blob":"https://clitestzarcstbcgg3yqinfg.blob.core.windows.net/","queue":"https://clitestzarcstbcgg3yqinfg.queue.core.windows.net/","table":"https://clitestzarcstbcgg3yqinfg.table.core.windows.net/","file":"https://clitestzarcstbcgg3yqinfg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestbyccq72r2rnjfc6e7ma7xklipq5yxdec7xzgp3rqdiqvagffurpfcagi7dv3kjixsp7k/providers/Microsoft.Storage/storageAccounts/version25b4mikldc2rugmv6","name":"version25b4mikldc2rugmv6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-17T02:36:57.8240400Z","key2":"2022-06-17T02:36:57.8240400Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-17T02:36:57.8240400Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-17T02:36:57.8240400Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-17T02:36:57.6990367Z","primaryEndpoints":{"dfs":"https://version25b4mikldc2rugmv6.dfs.core.windows.net/","web":"https://version25b4mikldc2rugmv6.z2.web.core.windows.net/","blob":"https://version25b4mikldc2rugmv6.blob.core.windows.net/","queue":"https://version25b4mikldc2rugmv6.queue.core.windows.net/","table":"https://version25b4mikldc2rugmv6.table.core.windows.net/","file":"https://version25b4mikldc2rugmv6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitests76ucvib4b5fgppqu5ciu6pknaatlexv4uk736sdtnk6osbv4idvaj7rh5ojgrjomo2z/providers/Microsoft.Storage/storageAccounts/version2unrg7v6iwv7y5m5l","name":"version2unrg7v6iwv7y5m5l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T21:39:50.1062976Z","key2":"2022-03-17T21:39:50.1062976Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T21:39:50.1062976Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T21:39:50.1062976Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T21:39:50.0281735Z","primaryEndpoints":{"dfs":"https://version2unrg7v6iwv7y5m5l.dfs.core.windows.net/","web":"https://version2unrg7v6iwv7y5m5l.z2.web.core.windows.net/","blob":"https://version2unrg7v6iwv7y5m5l.blob.core.windows.net/","queue":"https://version2unrg7v6iwv7y5m5l.queue.core.windows.net/","table":"https://version2unrg7v6iwv7y5m5l.table.core.windows.net/","file":"https://version2unrg7v6iwv7y5m5l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3tibadds5lu5w2l7eglv3fx6fle6tcdlmpnjyebby5bb5xfopqkxdqumpgyd2feunb2d/providers/Microsoft.Storage/storageAccounts/version4dicc6l6ho3regfk6","name":"version4dicc6l6ho3regfk6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-11T14:00:21.7678463Z","key2":"2022-04-11T14:00:21.7678463Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:00:21.7678463Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:00:21.7678463Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:00:21.6584988Z","primaryEndpoints":{"dfs":"https://version4dicc6l6ho3regfk6.dfs.core.windows.net/","web":"https://version4dicc6l6ho3regfk6.z2.web.core.windows.net/","blob":"https://version4dicc6l6ho3regfk6.blob.core.windows.net/","queue":"https://version4dicc6l6ho3regfk6.queue.core.windows.net/","table":"https://version4dicc6l6ho3regfk6.table.core.windows.net/","file":"https://version4dicc6l6ho3regfk6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwknqzg5zjerxpy3o5hk7dnurdorem3gtbhrpqfkprayy4vlkd4273wxmt3qg7mzreetg/providers/Microsoft.Storage/storageAccounts/version5j4oyz2ix5ku4yhgr","name":"version5j4oyz2ix5ku4yhgr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-12T00:24:16.9641784Z","key2":"2022-08-12T00:24:16.9641784Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T00:24:17.1985596Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-12T00:24:17.1985596Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-12T00:24:16.8391584Z","primaryEndpoints":{"dfs":"https://version5j4oyz2ix5ku4yhgr.dfs.core.windows.net/","web":"https://version5j4oyz2ix5ku4yhgr.z2.web.core.windows.net/","blob":"https://version5j4oyz2ix5ku4yhgr.blob.core.windows.net/","queue":"https://version5j4oyz2ix5ku4yhgr.queue.core.windows.net/","table":"https://version5j4oyz2ix5ku4yhgr.table.core.windows.net/","file":"https://version5j4oyz2ix5ku4yhgr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestousee7s5ti3bvgsldu3tad76cdv45lzvkwlnece46ufo4hjl22dj6kmqdpkbeba6i7wa/providers/Microsoft.Storage/storageAccounts/version5s35huoclfr4t2omd","name":"version5s35huoclfr4t2omd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T09:39:15.6662132Z","key2":"2022-02-24T09:39:15.6662132Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.6817670Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.6817670Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:39:15.6036637Z","primaryEndpoints":{"dfs":"https://version5s35huoclfr4t2omd.dfs.core.windows.net/","web":"https://version5s35huoclfr4t2omd.z2.web.core.windows.net/","blob":"https://version5s35huoclfr4t2omd.blob.core.windows.net/","queue":"https://version5s35huoclfr4t2omd.queue.core.windows.net/","table":"https://version5s35huoclfr4t2omd.table.core.windows.net/","file":"https://version5s35huoclfr4t2omd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdr6bri6cqc4uqm7ggpwj34csapsvbmlicxdcovjzsxlkc5ph2xyxnjlxzboseuegw5q2/providers/Microsoft.Storage/storageAccounts/versionagcwr45mfhwqkazte","name":"versionagcwr45mfhwqkazte","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-19T23:06:05.8843975Z","key2":"2022-05-19T23:06:05.8843975Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-19T23:06:05.8843975Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-19T23:06:05.8843975Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-19T23:06:05.7750830Z","primaryEndpoints":{"dfs":"https://versionagcwr45mfhwqkazte.dfs.core.windows.net/","web":"https://versionagcwr45mfhwqkazte.z2.web.core.windows.net/","blob":"https://versionagcwr45mfhwqkazte.blob.core.windows.net/","queue":"https://versionagcwr45mfhwqkazte.queue.core.windows.net/","table":"https://versionagcwr45mfhwqkazte.table.core.windows.net/","file":"https://versionagcwr45mfhwqkazte.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrufhmpf72rb43k5blozj25owkww6nh6wkbdmtxrh6ysb753k3nkbcxzyci2q4vgvyjox/providers/Microsoft.Storage/storageAccounts/versionbfwb3mlerhtix2pt6","name":"versionbfwb3mlerhtix2pt6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-19T02:53:03.2297517Z","key2":"2022-08-19T02:53:03.2297517Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:53:03.5735267Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:53:03.5735267Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-19T02:53:03.1047458Z","primaryEndpoints":{"dfs":"https://versionbfwb3mlerhtix2pt6.dfs.core.windows.net/","web":"https://versionbfwb3mlerhtix2pt6.z2.web.core.windows.net/","blob":"https://versionbfwb3mlerhtix2pt6.blob.core.windows.net/","queue":"https://versionbfwb3mlerhtix2pt6.queue.core.windows.net/","table":"https://versionbfwb3mlerhtix2pt6.table.core.windows.net/","file":"https://versionbfwb3mlerhtix2pt6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrbeoeyuczwyiitagnjquifkcu7l7pbiofoqpq5dvnyw6t2g23cidvmrfpsiitzgvvltc/providers/Microsoft.Storage/storageAccounts/versionbxfkluj64kluccc4m","name":"versionbxfkluj64kluccc4m","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T03:38:23.7393566Z","key2":"2022-03-18T03:38:23.7393566Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:38:23.7393566Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:38:23.7393566Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:38:23.6299381Z","primaryEndpoints":{"dfs":"https://versionbxfkluj64kluccc4m.dfs.core.windows.net/","web":"https://versionbxfkluj64kluccc4m.z2.web.core.windows.net/","blob":"https://versionbxfkluj64kluccc4m.blob.core.windows.net/","queue":"https://versionbxfkluj64kluccc4m.queue.core.windows.net/","table":"https://versionbxfkluj64kluccc4m.table.core.windows.net/","file":"https://versionbxfkluj64kluccc4m.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5feodovurwzsilp6pwlmafeektwxlwijkstn52zi6kxelzeryrhtj3dykralburkfbe2/providers/Microsoft.Storage/storageAccounts/versionc4lto7lppswuwqswn","name":"versionc4lto7lppswuwqswn","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-07T00:11:02.6858446Z","key2":"2022-01-07T00:11:02.6858446Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:11:02.6858446Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:11:02.6858446Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:11:02.5920986Z","primaryEndpoints":{"dfs":"https://versionc4lto7lppswuwqswn.dfs.core.windows.net/","web":"https://versionc4lto7lppswuwqswn.z2.web.core.windows.net/","blob":"https://versionc4lto7lppswuwqswn.blob.core.windows.net/","queue":"https://versionc4lto7lppswuwqswn.queue.core.windows.net/","table":"https://versionc4lto7lppswuwqswn.table.core.windows.net/","file":"https://versionc4lto7lppswuwqswn.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestqpx4xcf6gtr3yurjrgb74quk2nnzv5yecowla4kxmylm5v6xx56nmdzvouyoxqdo2zqa/providers/Microsoft.Storage/storageAccounts/versionca2bdiizawq746gf6","name":"versionca2bdiizawq746gf6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-22T00:02:26.9472670Z","key2":"2022-07-22T00:02:26.9472670Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-22T00:02:27.3066165Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-22T00:02:27.3066165Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-22T00:02:26.8222904Z","primaryEndpoints":{"dfs":"https://versionca2bdiizawq746gf6.dfs.core.windows.net/","web":"https://versionca2bdiizawq746gf6.z2.web.core.windows.net/","blob":"https://versionca2bdiizawq746gf6.blob.core.windows.net/","queue":"https://versionca2bdiizawq746gf6.queue.core.windows.net/","table":"https://versionca2bdiizawq746gf6.table.core.windows.net/","file":"https://versionca2bdiizawq746gf6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2zdiilm3ugwy2dlv37bhlyvyf6wpljit7d6o3zepyw6fkroztx53ouqjyhwp4dkp4jzv/providers/Microsoft.Storage/storageAccounts/versioncal7ire65zyi6zhnx","name":"versioncal7ire65zyi6zhnx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-03T23:20:37.4509722Z","key2":"2022-03-03T23:20:37.4509722Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:20:37.4666237Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:20:37.4666237Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:20:37.3728352Z","primaryEndpoints":{"dfs":"https://versioncal7ire65zyi6zhnx.dfs.core.windows.net/","web":"https://versioncal7ire65zyi6zhnx.z2.web.core.windows.net/","blob":"https://versioncal7ire65zyi6zhnx.blob.core.windows.net/","queue":"https://versioncal7ire65zyi6zhnx.queue.core.windows.net/","table":"https://versioncal7ire65zyi6zhnx.table.core.windows.net/","file":"https://versioncal7ire65zyi6zhnx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest24txadv4waeoqfrbzw4q3e333id45y7nnpuv5vvovws7fhrkesqbuul5chzpu6flgvfk/providers/Microsoft.Storage/storageAccounts/versionclxgou4idgatxjr77","name":"versionclxgou4idgatxjr77","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T09:25:37.7565157Z","key2":"2022-03-16T09:25:37.7565157Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:25:37.7565157Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:25:37.7565157Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:25:37.6627583Z","primaryEndpoints":{"dfs":"https://versionclxgou4idgatxjr77.dfs.core.windows.net/","web":"https://versionclxgou4idgatxjr77.z2.web.core.windows.net/","blob":"https://versionclxgou4idgatxjr77.blob.core.windows.net/","queue":"https://versionclxgou4idgatxjr77.queue.core.windows.net/","table":"https://versionclxgou4idgatxjr77.table.core.windows.net/","file":"https://versionclxgou4idgatxjr77.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdrnnmqa4sgcpa7frydav5ijhdtawsxmmdwnh5rj7r5xhveix5ns7wms6wesgxwc5pu3o/providers/Microsoft.Storage/storageAccounts/versioncq5cycygofi7d6pri","name":"versioncq5cycygofi7d6pri","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-05T23:00:43.4900067Z","key2":"2022-05-05T23:00:43.4900067Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:00:43.4900067Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:00:43.4900067Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:00:43.3650110Z","primaryEndpoints":{"dfs":"https://versioncq5cycygofi7d6pri.dfs.core.windows.net/","web":"https://versioncq5cycygofi7d6pri.z2.web.core.windows.net/","blob":"https://versioncq5cycygofi7d6pri.blob.core.windows.net/","queue":"https://versioncq5cycygofi7d6pri.queue.core.windows.net/","table":"https://versioncq5cycygofi7d6pri.table.core.windows.net/","file":"https://versioncq5cycygofi7d6pri.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsk4lc6dssbjjgkmxuk6phvsahow4dkmxkix2enlwuhhplj3lgqof5kr6leepjdyea3pl/providers/Microsoft.Storage/storageAccounts/versioncuioqcwvj2iwjmldg","name":"versioncuioqcwvj2iwjmldg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T08:54:58.9739508Z","key2":"2022-03-16T08:54:58.9739508Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T08:54:58.9895499Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T08:54:58.9895499Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T08:54:58.9114548Z","primaryEndpoints":{"dfs":"https://versioncuioqcwvj2iwjmldg.dfs.core.windows.net/","web":"https://versioncuioqcwvj2iwjmldg.z2.web.core.windows.net/","blob":"https://versioncuioqcwvj2iwjmldg.blob.core.windows.net/","queue":"https://versioncuioqcwvj2iwjmldg.queue.core.windows.net/","table":"https://versioncuioqcwvj2iwjmldg.table.core.windows.net/","file":"https://versioncuioqcwvj2iwjmldg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsgar4qjt34qhsuj6hez7kimz6mfle7eczvq5bfsh7xpilagusjstjetu65f2u6vh5qeb/providers/Microsoft.Storage/storageAccounts/versiond3oz7jhpapoxnxxci","name":"versiond3oz7jhpapoxnxxci","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-26T08:45:21.5394973Z","key2":"2022-04-26T08:45:21.5394973Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:45:21.5394973Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:45:21.5394973Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:45:21.4301251Z","primaryEndpoints":{"dfs":"https://versiond3oz7jhpapoxnxxci.dfs.core.windows.net/","web":"https://versiond3oz7jhpapoxnxxci.z2.web.core.windows.net/","blob":"https://versiond3oz7jhpapoxnxxci.blob.core.windows.net/","queue":"https://versiond3oz7jhpapoxnxxci.queue.core.windows.net/","table":"https://versiond3oz7jhpapoxnxxci.table.core.windows.net/","file":"https://versiond3oz7jhpapoxnxxci.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth6t5wqiulzt7vmszohprfrvkph7c226cgihbujtdvljcbvc4d4zwjbhwjscbts34c7up/providers/Microsoft.Storage/storageAccounts/versiondj27wf2pbuqyzilmd","name":"versiondj27wf2pbuqyzilmd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-11T13:45:18.9773986Z","key2":"2022-04-11T13:45:18.9773986Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T13:45:18.9773986Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T13:45:18.9773986Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T13:45:18.8834129Z","primaryEndpoints":{"dfs":"https://versiondj27wf2pbuqyzilmd.dfs.core.windows.net/","web":"https://versiondj27wf2pbuqyzilmd.z2.web.core.windows.net/","blob":"https://versiondj27wf2pbuqyzilmd.blob.core.windows.net/","queue":"https://versiondj27wf2pbuqyzilmd.queue.core.windows.net/","table":"https://versiondj27wf2pbuqyzilmd.table.core.windows.net/","file":"https://versiondj27wf2pbuqyzilmd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfyxdmvu32prroldn2p24a3iyr2phi7o22i26szwv2kuwh6zaj4rdet7ms5gdjnam2egt/providers/Microsoft.Storage/storageAccounts/versiondjhixg3cqipgjsmx4","name":"versiondjhixg3cqipgjsmx4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T07:41:23.9995280Z","key2":"2022-03-17T07:41:23.9995280Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:41:23.9995280Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:41:23.9995280Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:41:23.9213706Z","primaryEndpoints":{"dfs":"https://versiondjhixg3cqipgjsmx4.dfs.core.windows.net/","web":"https://versiondjhixg3cqipgjsmx4.z2.web.core.windows.net/","blob":"https://versiondjhixg3cqipgjsmx4.blob.core.windows.net/","queue":"https://versiondjhixg3cqipgjsmx4.queue.core.windows.net/","table":"https://versiondjhixg3cqipgjsmx4.table.core.windows.net/","file":"https://versiondjhixg3cqipgjsmx4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestchwod5nqxyebiyl6j4s2afrqmitcdhgmxhxszsf4wv6qwws7hvhvget5u2i2cua63cxc/providers/Microsoft.Storage/storageAccounts/versiondo3arjclzct3ahufa","name":"versiondo3arjclzct3ahufa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T22:34:36.9447831Z","key2":"2022-02-24T22:34:36.9447831Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:34:36.9447831Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:34:36.9447831Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:34:36.8510092Z","primaryEndpoints":{"dfs":"https://versiondo3arjclzct3ahufa.dfs.core.windows.net/","web":"https://versiondo3arjclzct3ahufa.z2.web.core.windows.net/","blob":"https://versiondo3arjclzct3ahufa.blob.core.windows.net/","queue":"https://versiondo3arjclzct3ahufa.queue.core.windows.net/","table":"https://versiondo3arjclzct3ahufa.table.core.windows.net/","file":"https://versiondo3arjclzct3ahufa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwmea2y23rvqprapww6ikfm6jk7abomcuhzngx3bltkme33xh2xkdgmn4n2fwcljqw3wv/providers/Microsoft.Storage/storageAccounts/versiondufx3et3bnjtg4xch","name":"versiondufx3et3bnjtg4xch","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-14T09:15:36.8221632Z","key2":"2022-04-14T09:15:36.8221632Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T09:15:36.8221632Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T09:15:36.8221632Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T09:15:36.7127958Z","primaryEndpoints":{"dfs":"https://versiondufx3et3bnjtg4xch.dfs.core.windows.net/","web":"https://versiondufx3et3bnjtg4xch.z2.web.core.windows.net/","blob":"https://versiondufx3et3bnjtg4xch.blob.core.windows.net/","queue":"https://versiondufx3et3bnjtg4xch.queue.core.windows.net/","table":"https://versiondufx3et3bnjtg4xch.table.core.windows.net/","file":"https://versiondufx3et3bnjtg4xch.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestakpkuxez73vyn36t4gn7rzxofnqwgm72bcmj4cdcadyalqklc2kyfx3qcfe3x2botivf/providers/Microsoft.Storage/storageAccounts/versionehqwmpnsaeybdcd4s","name":"versionehqwmpnsaeybdcd4s","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-25T22:59:30.3393037Z","key2":"2021-11-25T22:59:30.3393037Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T22:59:30.3549542Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T22:59:30.3549542Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T22:59:30.2768393Z","primaryEndpoints":{"dfs":"https://versionehqwmpnsaeybdcd4s.dfs.core.windows.net/","web":"https://versionehqwmpnsaeybdcd4s.z2.web.core.windows.net/","blob":"https://versionehqwmpnsaeybdcd4s.blob.core.windows.net/","queue":"https://versionehqwmpnsaeybdcd4s.queue.core.windows.net/","table":"https://versionehqwmpnsaeybdcd4s.table.core.windows.net/","file":"https://versionehqwmpnsaeybdcd4s.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesterdlb62puqdedjbhf3za3vxsu7igmsj447yliowotbxtokfcxj6geys4tgngzk5iuppn/providers/Microsoft.Storage/storageAccounts/versionen7upolksoryxwxnb","name":"versionen7upolksoryxwxnb","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-16T23:42:25.7694875Z","key2":"2021-12-16T23:42:25.7694875Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:42:25.7851037Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:42:25.7851037Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:42:25.7069810Z","primaryEndpoints":{"dfs":"https://versionen7upolksoryxwxnb.dfs.core.windows.net/","web":"https://versionen7upolksoryxwxnb.z2.web.core.windows.net/","blob":"https://versionen7upolksoryxwxnb.blob.core.windows.net/","queue":"https://versionen7upolksoryxwxnb.queue.core.windows.net/","table":"https://versionen7upolksoryxwxnb.table.core.windows.net/","file":"https://versionen7upolksoryxwxnb.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestnfengdfk2ngxhha63iyxjynzy5sg34coci5qfoxts5tendps4otgznuyxp6keb3cjgim/providers/Microsoft.Storage/storageAccounts/versionf4ot6q5su44seyetx","name":"versionf4ot6q5su44seyetx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-25T23:43:19.6107829Z","key2":"2022-08-25T23:43:19.6107829Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T23:43:19.8139133Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T23:43:19.8139133Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-25T23:43:19.4701662Z","primaryEndpoints":{"dfs":"https://versionf4ot6q5su44seyetx.dfs.core.windows.net/","web":"https://versionf4ot6q5su44seyetx.z2.web.core.windows.net/","blob":"https://versionf4ot6q5su44seyetx.blob.core.windows.net/","queue":"https://versionf4ot6q5su44seyetx.queue.core.windows.net/","table":"https://versionf4ot6q5su44seyetx.table.core.windows.net/","file":"https://versionf4ot6q5su44seyetx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrvgfrlua5ai2leiutip26a27qxs2lzedu3g6gjrqjzi3rna2yxcinlc5ioxhhfvnx5rv/providers/Microsoft.Storage/storageAccounts/versiongdbkjcemb56eyu3rj","name":"versiongdbkjcemb56eyu3rj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:17:17.2960150Z","key2":"2021-11-18T23:17:17.2960150Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:17.2335295Z","primaryEndpoints":{"dfs":"https://versiongdbkjcemb56eyu3rj.dfs.core.windows.net/","web":"https://versiongdbkjcemb56eyu3rj.z2.web.core.windows.net/","blob":"https://versiongdbkjcemb56eyu3rj.blob.core.windows.net/","queue":"https://versiongdbkjcemb56eyu3rj.queue.core.windows.net/","table":"https://versiongdbkjcemb56eyu3rj.table.core.windows.net/","file":"https://versiongdbkjcemb56eyu3rj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestylszwk3tqxigxfm3ongkbbgoelhfjiyrqqybpleivk3e7qa7gylocnj7rkod4jivp33h/providers/Microsoft.Storage/storageAccounts/versionha6yygjfdivfeud5k","name":"versionha6yygjfdivfeud5k","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-21T23:02:51.1629635Z","key2":"2022-04-21T23:02:51.1629635Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:02:51.1629635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:02:51.1629635Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:02:51.0535636Z","primaryEndpoints":{"dfs":"https://versionha6yygjfdivfeud5k.dfs.core.windows.net/","web":"https://versionha6yygjfdivfeud5k.z2.web.core.windows.net/","blob":"https://versionha6yygjfdivfeud5k.blob.core.windows.net/","queue":"https://versionha6yygjfdivfeud5k.queue.core.windows.net/","table":"https://versionha6yygjfdivfeud5k.table.core.windows.net/","file":"https://versionha6yygjfdivfeud5k.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestnsw32miijgjmandsqepzbytqsxe2dbpfuh3t2d2u7saewxrnoilajjocllnjxt45ggjc/providers/Microsoft.Storage/storageAccounts/versionhf53xzmbt3fwu3kn3","name":"versionhf53xzmbt3fwu3kn3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:29:06.2474527Z","key2":"2021-09-07T02:29:06.2474527Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:29:06.1849281Z","primaryEndpoints":{"dfs":"https://versionhf53xzmbt3fwu3kn3.dfs.core.windows.net/","web":"https://versionhf53xzmbt3fwu3kn3.z2.web.core.windows.net/","blob":"https://versionhf53xzmbt3fwu3kn3.blob.core.windows.net/","queue":"https://versionhf53xzmbt3fwu3kn3.queue.core.windows.net/","table":"https://versionhf53xzmbt3fwu3kn3.table.core.windows.net/","file":"https://versionhf53xzmbt3fwu3kn3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2d5fjdmfhy7kkhkwbqo7gngf6a2wlnvvaku7gxkwitz7vnnppvgothckppdsxhv3nem2/providers/Microsoft.Storage/storageAccounts/versionhh4uq45sysgx6awnt","name":"versionhh4uq45sysgx6awnt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-14T23:26:38.4670192Z","key2":"2022-04-14T23:26:38.4670192Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:26:38.4670192Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:26:38.4670192Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:26:38.3576837Z","primaryEndpoints":{"dfs":"https://versionhh4uq45sysgx6awnt.dfs.core.windows.net/","web":"https://versionhh4uq45sysgx6awnt.z2.web.core.windows.net/","blob":"https://versionhh4uq45sysgx6awnt.blob.core.windows.net/","queue":"https://versionhh4uq45sysgx6awnt.queue.core.windows.net/","table":"https://versionhh4uq45sysgx6awnt.table.core.windows.net/","file":"https://versionhh4uq45sysgx6awnt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliteste6lnfkdei2mzinyplhajo2t5ly327gwrwmuf5mrj74avle2b2kf4ulu4u3zlxxwts4ab/providers/Microsoft.Storage/storageAccounts/versionib6wdvsaxftddhtmh","name":"versionib6wdvsaxftddhtmh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-28T22:27:01.2291330Z","key2":"2022-04-28T22:27:01.2291330Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:27:01.2447470Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:27:01.2447470Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:27:01.1041285Z","primaryEndpoints":{"dfs":"https://versionib6wdvsaxftddhtmh.dfs.core.windows.net/","web":"https://versionib6wdvsaxftddhtmh.z2.web.core.windows.net/","blob":"https://versionib6wdvsaxftddhtmh.blob.core.windows.net/","queue":"https://versionib6wdvsaxftddhtmh.queue.core.windows.net/","table":"https://versionib6wdvsaxftddhtmh.table.core.windows.net/","file":"https://versionib6wdvsaxftddhtmh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesti5twtev4nt7cel7ygxhupx6tvfowykbyxvq7aqclx76mlvsomt6fradfz3xbl2qkuo77/providers/Microsoft.Storage/storageAccounts/versionijonp732sqkyptdxv","name":"versionijonp732sqkyptdxv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-15T14:22:06.6522048Z","key2":"2022-06-15T14:22:06.6522048Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-15T14:22:06.6522048Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-15T14:22:06.6522048Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-15T14:22:06.5115315Z","primaryEndpoints":{"dfs":"https://versionijonp732sqkyptdxv.dfs.core.windows.net/","web":"https://versionijonp732sqkyptdxv.z2.web.core.windows.net/","blob":"https://versionijonp732sqkyptdxv.blob.core.windows.net/","queue":"https://versionijonp732sqkyptdxv.queue.core.windows.net/","table":"https://versionijonp732sqkyptdxv.table.core.windows.net/","file":"https://versionijonp732sqkyptdxv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest74lh5dcwdivjzpbyoqvafkpvnfg3tregvqtf456g3udapzlfl4jyqlh3sde26d2jh3x6/providers/Microsoft.Storage/storageAccounts/versioniuezathg3v5v754k7","name":"versioniuezathg3v5v754k7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-18T05:42:37.9837177Z","key2":"2022-04-18T05:42:37.9837177Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T05:42:37.9837177Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T05:42:37.9837177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-18T05:42:37.8743443Z","primaryEndpoints":{"dfs":"https://versioniuezathg3v5v754k7.dfs.core.windows.net/","web":"https://versioniuezathg3v5v754k7.z2.web.core.windows.net/","blob":"https://versioniuezathg3v5v754k7.blob.core.windows.net/","queue":"https://versioniuezathg3v5v754k7.queue.core.windows.net/","table":"https://versioniuezathg3v5v754k7.table.core.windows.net/","file":"https://versioniuezathg3v5v754k7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcdvjnuor7heyx55wxz6h4jdaxblpvnyfdk47a7ameycswklee6pxoev7idm4m644qisg/providers/Microsoft.Storage/storageAccounts/versionizwzijfbdy5w6mvbu","name":"versionizwzijfbdy5w6mvbu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-25T00:18:06.3765854Z","key2":"2022-02-25T00:18:06.3765854Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:18:06.3921844Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:18:06.3921844Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:18:06.2828372Z","primaryEndpoints":{"dfs":"https://versionizwzijfbdy5w6mvbu.dfs.core.windows.net/","web":"https://versionizwzijfbdy5w6mvbu.z2.web.core.windows.net/","blob":"https://versionizwzijfbdy5w6mvbu.blob.core.windows.net/","queue":"https://versionizwzijfbdy5w6mvbu.queue.core.windows.net/","table":"https://versionizwzijfbdy5w6mvbu.table.core.windows.net/","file":"https://versionizwzijfbdy5w6mvbu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyvfj56iwcgufwkocne3mpvfybdxcrwji7mafk5rzvuauqwkw74uorxwcrsdrex4qzxdb/providers/Microsoft.Storage/storageAccounts/versionjf5vwi62gnojxbrin","name":"versionjf5vwi62gnojxbrin","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-23T23:11:02.4854396Z","key2":"2022-06-23T23:11:02.4854396Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-23T23:11:02.4854396Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-23T23:11:02.4854396Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-23T23:11:02.3760826Z","primaryEndpoints":{"dfs":"https://versionjf5vwi62gnojxbrin.dfs.core.windows.net/","web":"https://versionjf5vwi62gnojxbrin.z2.web.core.windows.net/","blob":"https://versionjf5vwi62gnojxbrin.blob.core.windows.net/","queue":"https://versionjf5vwi62gnojxbrin.queue.core.windows.net/","table":"https://versionjf5vwi62gnojxbrin.table.core.windows.net/","file":"https://versionjf5vwi62gnojxbrin.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2bf3y635koqimi32ff256osuvtgnxbnvoqb3mm4yqgsppfdhiopu7vwpgv7ibucpvvas/providers/Microsoft.Storage/storageAccounts/versionkd6zpavp6fipypfp5","name":"versionkd6zpavp6fipypfp5","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-05T00:18:31.9846284Z","key2":"2022-08-05T00:18:31.9846284Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-05T00:18:32.2346451Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-05T00:18:32.2346451Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-05T00:18:31.8752287Z","primaryEndpoints":{"dfs":"https://versionkd6zpavp6fipypfp5.dfs.core.windows.net/","web":"https://versionkd6zpavp6fipypfp5.z2.web.core.windows.net/","blob":"https://versionkd6zpavp6fipypfp5.blob.core.windows.net/","queue":"https://versionkd6zpavp6fipypfp5.queue.core.windows.net/","table":"https://versionkd6zpavp6fipypfp5.table.core.windows.net/","file":"https://versionkd6zpavp6fipypfp5.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfjg3rxzubogi6qrblsgw3mmesxhn3pxjg27a5ktf7gnrxrnhwlrylljjshcwyyghqxbu/providers/Microsoft.Storage/storageAccounts/versionko6ksgiyhw5bzflr7","name":"versionko6ksgiyhw5bzflr7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-15T09:44:43.3485045Z","key2":"2022-04-15T09:44:43.3485045Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-15T09:44:43.3485045Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-15T09:44:43.3485045Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-15T09:44:43.2547236Z","primaryEndpoints":{"dfs":"https://versionko6ksgiyhw5bzflr7.dfs.core.windows.net/","web":"https://versionko6ksgiyhw5bzflr7.z2.web.core.windows.net/","blob":"https://versionko6ksgiyhw5bzflr7.blob.core.windows.net/","queue":"https://versionko6ksgiyhw5bzflr7.queue.core.windows.net/","table":"https://versionko6ksgiyhw5bzflr7.table.core.windows.net/","file":"https://versionko6ksgiyhw5bzflr7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkzfdhprmzadvpjklrd7656pshnk33mbj6omwyff2jzqjatbmhegyprcfs7wbi4ypmvef/providers/Microsoft.Storage/storageAccounts/versionm5vzvntn2srqhkssx","name":"versionm5vzvntn2srqhkssx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T23:15:38.7806886Z","key2":"2021-12-09T23:15:38.7806886Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:15:38.7806886Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:15:38.7806886Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:15:38.7025605Z","primaryEndpoints":{"dfs":"https://versionm5vzvntn2srqhkssx.dfs.core.windows.net/","web":"https://versionm5vzvntn2srqhkssx.z2.web.core.windows.net/","blob":"https://versionm5vzvntn2srqhkssx.blob.core.windows.net/","queue":"https://versionm5vzvntn2srqhkssx.queue.core.windows.net/","table":"https://versionm5vzvntn2srqhkssx.table.core.windows.net/","file":"https://versionm5vzvntn2srqhkssx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcn3l6sycbepzkd2ybj7plr6gjmx6fgezenx32vhhyyffqqwjya67vjd4kodzxll446ln/providers/Microsoft.Storage/storageAccounts/versionmfgix44dhfghc547p","name":"versionmfgix44dhfghc547p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-19T02:02:38.1319758Z","key2":"2022-08-19T02:02:38.1319758Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:02:38.5850775Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-19T02:02:38.5850775Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-19T02:02:37.9913600Z","primaryEndpoints":{"dfs":"https://versionmfgix44dhfghc547p.dfs.core.windows.net/","web":"https://versionmfgix44dhfghc547p.z2.web.core.windows.net/","blob":"https://versionmfgix44dhfghc547p.blob.core.windows.net/","queue":"https://versionmfgix44dhfghc547p.queue.core.windows.net/","table":"https://versionmfgix44dhfghc547p.table.core.windows.net/","file":"https://versionmfgix44dhfghc547p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrucmsuhepako3zykpbjum463g65jyy7upzyjekugytpfpg7aad4exswd6bb4aewzt3wx/providers/Microsoft.Storage/storageAccounts/versionmgdngb2qf4xgzpvw7","name":"versionmgdngb2qf4xgzpvw7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-28T23:37:08.8042346Z","key2":"2022-07-28T23:37:08.8042346Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:37:09.2104896Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-28T23:37:09.2104896Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-28T23:37:08.6791923Z","primaryEndpoints":{"dfs":"https://versionmgdngb2qf4xgzpvw7.dfs.core.windows.net/","web":"https://versionmgdngb2qf4xgzpvw7.z2.web.core.windows.net/","blob":"https://versionmgdngb2qf4xgzpvw7.blob.core.windows.net/","queue":"https://versionmgdngb2qf4xgzpvw7.queue.core.windows.net/","table":"https://versionmgdngb2qf4xgzpvw7.table.core.windows.net/","file":"https://versionmgdngb2qf4xgzpvw7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest343dzma6rtq62hhvl7i2wibqtwc2zsp7drdz7nvo75qh3w33dqswyvczpijlaklzk3hc/providers/Microsoft.Storage/storageAccounts/versionn73uafs7viwmdhk3w","name":"versionn73uafs7viwmdhk3w","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-18T08:14:36.3481708Z","key2":"2022-08-18T08:14:36.3481708Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T08:14:36.7543973Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T08:14:36.7543973Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-18T08:14:36.2075294Z","primaryEndpoints":{"dfs":"https://versionn73uafs7viwmdhk3w.dfs.core.windows.net/","web":"https://versionn73uafs7viwmdhk3w.z2.web.core.windows.net/","blob":"https://versionn73uafs7viwmdhk3w.blob.core.windows.net/","queue":"https://versionn73uafs7viwmdhk3w.queue.core.windows.net/","table":"https://versionn73uafs7viwmdhk3w.table.core.windows.net/","file":"https://versionn73uafs7viwmdhk3w.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4ynxfhry5dpkuo3xwssvdbe3iwcxt5ewlnx3lz332nsyd3piqlooviiegb2uplmxnctu/providers/Microsoft.Storage/storageAccounts/versionnaeshhylx7ri7rvhk","name":"versionnaeshhylx7ri7rvhk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T01:17:46.3041863Z","key2":"2022-03-18T01:17:46.3041863Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:17:46.3198179Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:17:46.3198179Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:17:46.0698030Z","primaryEndpoints":{"dfs":"https://versionnaeshhylx7ri7rvhk.dfs.core.windows.net/","web":"https://versionnaeshhylx7ri7rvhk.z2.web.core.windows.net/","blob":"https://versionnaeshhylx7ri7rvhk.blob.core.windows.net/","queue":"https://versionnaeshhylx7ri7rvhk.queue.core.windows.net/","table":"https://versionnaeshhylx7ri7rvhk.table.core.windows.net/","file":"https://versionnaeshhylx7ri7rvhk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestqtov5khibmli5l5qnqxx7sqsiomitv4dy6e7v2p6g6baxo5k7gybvzol2mludvvlt3hk/providers/Microsoft.Storage/storageAccounts/versionncglaxef3bncte6ug","name":"versionncglaxef3bncte6ug","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T05:01:00.4631938Z","key2":"2021-12-09T05:01:00.4631938Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:01:00.4631938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:01:00.4631938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:01:00.4007471Z","primaryEndpoints":{"dfs":"https://versionncglaxef3bncte6ug.dfs.core.windows.net/","web":"https://versionncglaxef3bncte6ug.z2.web.core.windows.net/","blob":"https://versionncglaxef3bncte6ug.blob.core.windows.net/","queue":"https://versionncglaxef3bncte6ug.queue.core.windows.net/","table":"https://versionncglaxef3bncte6ug.table.core.windows.net/","file":"https://versionncglaxef3bncte6ug.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyex6l2i6otx4eikzzr7rikdz4b6rezhqeg6mnzwvtof4vpxkcw34rd7hwpk7q5ltnrxp/providers/Microsoft.Storage/storageAccounts/versionncoq7gv5mbp4o2uf6","name":"versionncoq7gv5mbp4o2uf6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T06:47:03.1566686Z","key2":"2021-10-15T06:47:03.1566686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T06:47:03.0785915Z","primaryEndpoints":{"dfs":"https://versionncoq7gv5mbp4o2uf6.dfs.core.windows.net/","web":"https://versionncoq7gv5mbp4o2uf6.z2.web.core.windows.net/","blob":"https://versionncoq7gv5mbp4o2uf6.blob.core.windows.net/","queue":"https://versionncoq7gv5mbp4o2uf6.queue.core.windows.net/","table":"https://versionncoq7gv5mbp4o2uf6.table.core.windows.net/","file":"https://versionncoq7gv5mbp4o2uf6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvexlopurtffpw44qelwzhnrj4hrri453i57dssogm2nrq3tgb4gdctqnh22two36b4r4/providers/Microsoft.Storage/storageAccounts/versiono3puxbh7aoleprgrj","name":"versiono3puxbh7aoleprgrj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-07T22:54:30.4927734Z","key2":"2022-04-07T22:54:30.4927734Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T22:54:30.4927734Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T22:54:30.4927734Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T22:54:30.3834786Z","primaryEndpoints":{"dfs":"https://versiono3puxbh7aoleprgrj.dfs.core.windows.net/","web":"https://versiono3puxbh7aoleprgrj.z2.web.core.windows.net/","blob":"https://versiono3puxbh7aoleprgrj.blob.core.windows.net/","queue":"https://versiono3puxbh7aoleprgrj.queue.core.windows.net/","table":"https://versiono3puxbh7aoleprgrj.table.core.windows.net/","file":"https://versiono3puxbh7aoleprgrj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4hjjelhodbnxnyv3gpitmvqm2g57s4osl4jrt3fa5jtsrwbqbikwerf5tiwwmmekgcsp/providers/Microsoft.Storage/storageAccounts/versiono5slm5nxi3gl5ndil","name":"versiono5slm5nxi3gl5ndil","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-12T22:51:21.6092516Z","key2":"2022-05-12T22:51:21.6092516Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T22:51:21.6092516Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-12T22:51:21.6092516Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-12T22:51:21.4686030Z","primaryEndpoints":{"dfs":"https://versiono5slm5nxi3gl5ndil.dfs.core.windows.net/","web":"https://versiono5slm5nxi3gl5ndil.z2.web.core.windows.net/","blob":"https://versiono5slm5nxi3gl5ndil.blob.core.windows.net/","queue":"https://versiono5slm5nxi3gl5ndil.queue.core.windows.net/","table":"https://versiono5slm5nxi3gl5ndil.table.core.windows.net/","file":"https://versiono5slm5nxi3gl5ndil.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest362gvxl72v6uq6oj6l7qacksa3grnrow2ahkvkeqkk6frlifprjlz5xq7v7y4mc2mkt4/providers/Microsoft.Storage/storageAccounts/versionomm3qhqmjr7zk4llh","name":"versionomm3qhqmjr7zk4llh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-07-15T00:27:33.6431259Z","key2":"2022-07-15T00:27:33.6431259Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-15T00:27:33.9400382Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-15T00:27:33.9400382Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-15T00:27:33.5181499Z","primaryEndpoints":{"dfs":"https://versionomm3qhqmjr7zk4llh.dfs.core.windows.net/","web":"https://versionomm3qhqmjr7zk4llh.z2.web.core.windows.net/","blob":"https://versionomm3qhqmjr7zk4llh.blob.core.windows.net/","queue":"https://versionomm3qhqmjr7zk4llh.queue.core.windows.net/","table":"https://versionomm3qhqmjr7zk4llh.table.core.windows.net/","file":"https://versionomm3qhqmjr7zk4llh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5qgbjmgp4dbfryqs33skw2pkptk2sdmoqsw6nqonzmeekbq3ovley42itnpj4yfej5yi/providers/Microsoft.Storage/storageAccounts/versionoojtzpigw27c2rlwi","name":"versionoojtzpigw27c2rlwi","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-30T22:31:21.7608674Z","key2":"2021-12-30T22:31:21.7608674Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:31:21.7765100Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:31:21.7765100Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:31:21.4483344Z","primaryEndpoints":{"dfs":"https://versionoojtzpigw27c2rlwi.dfs.core.windows.net/","web":"https://versionoojtzpigw27c2rlwi.z2.web.core.windows.net/","blob":"https://versionoojtzpigw27c2rlwi.blob.core.windows.net/","queue":"https://versionoojtzpigw27c2rlwi.queue.core.windows.net/","table":"https://versionoojtzpigw27c2rlwi.table.core.windows.net/","file":"https://versionoojtzpigw27c2rlwi.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyxq5yt6z4or5ddvyvubtdjn73mslv25s4bqqme3ljmj6jsaagbmyn376m3cdex35tubw/providers/Microsoft.Storage/storageAccounts/versionqp3efyteboplomp5w","name":"versionqp3efyteboplomp5w","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:20:09.3003824Z","key2":"2021-09-07T02:20:09.3003824Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:20:09.2378807Z","primaryEndpoints":{"dfs":"https://versionqp3efyteboplomp5w.dfs.core.windows.net/","web":"https://versionqp3efyteboplomp5w.z2.web.core.windows.net/","blob":"https://versionqp3efyteboplomp5w.blob.core.windows.net/","queue":"https://versionqp3efyteboplomp5w.queue.core.windows.net/","table":"https://versionqp3efyteboplomp5w.table.core.windows.net/","file":"https://versionqp3efyteboplomp5w.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest27tntypkdnlo3adbzt7qqcx3detlxgtxnuxhaxdgobws4bjc26vshca2qezntlnmpuup/providers/Microsoft.Storage/storageAccounts/versionryihikjyurp5tntba","name":"versionryihikjyurp5tntba","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:07:42.2418545Z","key2":"2021-11-11T22:07:42.2418545Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:42.1637179Z","primaryEndpoints":{"dfs":"https://versionryihikjyurp5tntba.dfs.core.windows.net/","web":"https://versionryihikjyurp5tntba.z2.web.core.windows.net/","blob":"https://versionryihikjyurp5tntba.blob.core.windows.net/","queue":"https://versionryihikjyurp5tntba.queue.core.windows.net/","table":"https://versionryihikjyurp5tntba.table.core.windows.net/","file":"https://versionryihikjyurp5tntba.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestz4bcht3lymqfffkatndjcle4qf567sbk5b3hfcoqhkrfgghei6jeqgan2zr2i2j5fbtq/providers/Microsoft.Storage/storageAccounts/versions3jowsvxiiqegyrbr","name":"versions3jowsvxiiqegyrbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-23T22:12:49.9938938Z","key2":"2021-12-23T22:12:49.9938938Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:12:49.9938938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:12:49.9938938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:12:49.9157469Z","primaryEndpoints":{"dfs":"https://versions3jowsvxiiqegyrbr.dfs.core.windows.net/","web":"https://versions3jowsvxiiqegyrbr.z2.web.core.windows.net/","blob":"https://versions3jowsvxiiqegyrbr.blob.core.windows.net/","queue":"https://versions3jowsvxiiqegyrbr.queue.core.windows.net/","table":"https://versions3jowsvxiiqegyrbr.table.core.windows.net/","file":"https://versions3jowsvxiiqegyrbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesturbzqfflmkkupfwgtkutwvdy5nte5rec7neu6eyya4kahyepssopgq72mzxl54g7h2pt/providers/Microsoft.Storage/storageAccounts/versionscknbekpvmwrjeznt","name":"versionscknbekpvmwrjeznt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-28T02:39:44.7553582Z","key2":"2021-10-28T02:39:44.7553582Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T02:39:44.6772068Z","primaryEndpoints":{"dfs":"https://versionscknbekpvmwrjeznt.dfs.core.windows.net/","web":"https://versionscknbekpvmwrjeznt.z2.web.core.windows.net/","blob":"https://versionscknbekpvmwrjeznt.blob.core.windows.net/","queue":"https://versionscknbekpvmwrjeznt.queue.core.windows.net/","table":"https://versionscknbekpvmwrjeznt.table.core.windows.net/","file":"https://versionscknbekpvmwrjeznt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestd5q64bqhg7etouaunbpihutfyklxtsq6th5x27ddcpkn5ddwaj7yeth7w6vabib2jk36/providers/Microsoft.Storage/storageAccounts/versionsl4dpowre7blcmtnv","name":"versionsl4dpowre7blcmtnv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T13:52:33.1524401Z","key2":"2022-03-17T13:52:33.1524401Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T13:52:33.1682399Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T13:52:33.1682399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T13:52:33.0430992Z","primaryEndpoints":{"dfs":"https://versionsl4dpowre7blcmtnv.dfs.core.windows.net/","web":"https://versionsl4dpowre7blcmtnv.z2.web.core.windows.net/","blob":"https://versionsl4dpowre7blcmtnv.blob.core.windows.net/","queue":"https://versionsl4dpowre7blcmtnv.queue.core.windows.net/","table":"https://versionsl4dpowre7blcmtnv.table.core.windows.net/","file":"https://versionsl4dpowre7blcmtnv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttfwerdemnnqhnkhq7pesq4g3fy2ms2qei6yjrfucueeqhy74fu5kdcxkbap7znlruizn/providers/Microsoft.Storage/storageAccounts/versionsnhg3s55m22flnaim","name":"versionsnhg3s55m22flnaim","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-28T16:47:35.2710910Z","key2":"2022-02-28T16:47:35.2710910Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T16:47:35.2867568Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T16:47:35.2867568Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T16:47:35.1773825Z","primaryEndpoints":{"dfs":"https://versionsnhg3s55m22flnaim.dfs.core.windows.net/","web":"https://versionsnhg3s55m22flnaim.z2.web.core.windows.net/","blob":"https://versionsnhg3s55m22flnaim.blob.core.windows.net/","queue":"https://versionsnhg3s55m22flnaim.queue.core.windows.net/","table":"https://versionsnhg3s55m22flnaim.table.core.windows.net/","file":"https://versionsnhg3s55m22flnaim.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2aypq4ri7ntc4vk7uzqnq5m5uvpubprfpj6qamt74t2ro73rk6gcv6pklnqtlizhvb2r/providers/Microsoft.Storage/storageAccounts/versionsrmjrvzlhnhmolxf2","name":"versionsrmjrvzlhnhmolxf2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-18T15:54:34.4121532Z","key2":"2022-08-18T15:54:34.4121532Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T15:54:34.8184003Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-18T15:54:34.8184003Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-18T15:54:34.2715218Z","primaryEndpoints":{"dfs":"https://versionsrmjrvzlhnhmolxf2.dfs.core.windows.net/","web":"https://versionsrmjrvzlhnhmolxf2.z2.web.core.windows.net/","blob":"https://versionsrmjrvzlhnhmolxf2.blob.core.windows.net/","queue":"https://versionsrmjrvzlhnhmolxf2.queue.core.windows.net/","table":"https://versionsrmjrvzlhnhmolxf2.table.core.windows.net/","file":"https://versionsrmjrvzlhnhmolxf2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest6j4p5hu3qwk67zq467rtwcd2a7paxiwrgpvjuqvw3drzvoz3clyu22h7l3gmkbn2c4oa/providers/Microsoft.Storage/storageAccounts/versionu6gh46ckmtwb2izub","name":"versionu6gh46ckmtwb2izub","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T05:28:58.1591481Z","key2":"2022-03-16T05:28:58.1591481Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:28:58.1747873Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:28:58.1747873Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:28:58.0654507Z","primaryEndpoints":{"dfs":"https://versionu6gh46ckmtwb2izub.dfs.core.windows.net/","web":"https://versionu6gh46ckmtwb2izub.z2.web.core.windows.net/","blob":"https://versionu6gh46ckmtwb2izub.blob.core.windows.net/","queue":"https://versionu6gh46ckmtwb2izub.queue.core.windows.net/","table":"https://versionu6gh46ckmtwb2izub.table.core.windows.net/","file":"https://versionu6gh46ckmtwb2izub.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestg3t4ff274xdgnl7gmcjibaodgkjehibkbhazsrbxtfbmhdnk5qk32nsvghigjrrfqcf3/providers/Microsoft.Storage/storageAccounts/versionudtckpbeshjnvwywq","name":"versionudtckpbeshjnvwywq","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-08-14T16:06:54.6367221Z","key2":"2022-08-14T16:06:54.6367221Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-14T16:06:55.0273250Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-14T16:06:55.0273250Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-14T16:06:54.5273449Z","primaryEndpoints":{"dfs":"https://versionudtckpbeshjnvwywq.dfs.core.windows.net/","web":"https://versionudtckpbeshjnvwywq.z2.web.core.windows.net/","blob":"https://versionudtckpbeshjnvwywq.blob.core.windows.net/","queue":"https://versionudtckpbeshjnvwywq.queue.core.windows.net/","table":"https://versionudtckpbeshjnvwywq.table.core.windows.net/","file":"https://versionudtckpbeshjnvwywq.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthjubmr2gcxl7wowm2yz4jtlqknroqoldmrrdz7ijr7kzs3intstr2ag5cuwovsdyfscc/providers/Microsoft.Storage/storageAccounts/versionvndhff7czdxs3e4zs","name":"versionvndhff7czdxs3e4zs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T22:53:55.3378319Z","key2":"2022-03-31T22:53:55.3378319Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:53:55.3378319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:53:55.3378319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:53:55.2284931Z","primaryEndpoints":{"dfs":"https://versionvndhff7czdxs3e4zs.dfs.core.windows.net/","web":"https://versionvndhff7czdxs3e4zs.z2.web.core.windows.net/","blob":"https://versionvndhff7czdxs3e4zs.blob.core.windows.net/","queue":"https://versionvndhff7czdxs3e4zs.queue.core.windows.net/","table":"https://versionvndhff7czdxs3e4zs.table.core.windows.net/","file":"https://versionvndhff7czdxs3e4zs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc37roadc7h7ibpejg25elnx5c7th3cjwkmdjmraqd7x4d6afafd67xtrdeammre4vvwz/providers/Microsoft.Storage/storageAccounts/versionvs7l3fj37x7r3omla","name":"versionvs7l3fj37x7r3omla","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-02T23:19:41.5709882Z","key2":"2021-12-02T23:19:41.5709882Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:19:41.5709882Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:19:41.5709882Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:19:41.4928817Z","primaryEndpoints":{"dfs":"https://versionvs7l3fj37x7r3omla.dfs.core.windows.net/","web":"https://versionvs7l3fj37x7r3omla.z2.web.core.windows.net/","blob":"https://versionvs7l3fj37x7r3omla.blob.core.windows.net/","queue":"https://versionvs7l3fj37x7r3omla.queue.core.windows.net/","table":"https://versionvs7l3fj37x7r3omla.table.core.windows.net/","file":"https://versionvs7l3fj37x7r3omla.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd/providers/Microsoft.Storage/storageAccounts/versionvsfin4nwuwcxndawj","name":"versionvsfin4nwuwcxndawj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:26:57.6350762Z","key2":"2021-09-07T02:26:57.6350762Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:26:57.5726321Z","primaryEndpoints":{"dfs":"https://versionvsfin4nwuwcxndawj.dfs.core.windows.net/","web":"https://versionvsfin4nwuwcxndawj.z2.web.core.windows.net/","blob":"https://versionvsfin4nwuwcxndawj.blob.core.windows.net/","queue":"https://versionvsfin4nwuwcxndawj.queue.core.windows.net/","table":"https://versionvsfin4nwuwcxndawj.table.core.windows.net/","file":"https://versionvsfin4nwuwcxndawj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestu2dumyf3mk7jyirvjmsg3w5s3sa7ke6ujncoaf3eo7bowo2bmxpjufa3ww5q66p2u2gb/providers/Microsoft.Storage/storageAccounts/versionwlfh4xbessj73brlz","name":"versionwlfh4xbessj73brlz","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-10T23:46:16.5584572Z","key2":"2022-03-10T23:46:16.5584572Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-10T23:46:16.5584572Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-10T23:46:16.5584572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-10T23:46:16.4803444Z","primaryEndpoints":{"dfs":"https://versionwlfh4xbessj73brlz.dfs.core.windows.net/","web":"https://versionwlfh4xbessj73brlz.z2.web.core.windows.net/","blob":"https://versionwlfh4xbessj73brlz.blob.core.windows.net/","queue":"https://versionwlfh4xbessj73brlz.queue.core.windows.net/","table":"https://versionwlfh4xbessj73brlz.table.core.windows.net/","file":"https://versionwlfh4xbessj73brlz.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsknognisu5ofc5kqx2s7pkyd44ypiqggvewtlb44ikbkje77zh4vo2y5c6alllygemol/providers/Microsoft.Storage/storageAccounts/versionwrfq6nydu5kpiyses","name":"versionwrfq6nydu5kpiyses","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-24T23:41:13.3087565Z","key2":"2022-03-24T23:41:13.3087565Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:41:13.3244129Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:41:13.3244129Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:41:13.1837898Z","primaryEndpoints":{"dfs":"https://versionwrfq6nydu5kpiyses.dfs.core.windows.net/","web":"https://versionwrfq6nydu5kpiyses.z2.web.core.windows.net/","blob":"https://versionwrfq6nydu5kpiyses.blob.core.windows.net/","queue":"https://versionwrfq6nydu5kpiyses.queue.core.windows.net/","table":"https://versionwrfq6nydu5kpiyses.table.core.windows.net/","file":"https://versionwrfq6nydu5kpiyses.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyvbbewdobz5vnqkoyumrkqbdufktrisug2ukkkvnirbc6frn2hxuvpe7weosgtfc4spk/providers/Microsoft.Storage/storageAccounts/versionymg2k5haow6be3wlh","name":"versionymg2k5haow6be3wlh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-08T05:20:27.5220722Z","key2":"2021-11-08T05:20:27.5220722Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-08T05:20:27.4439279Z","primaryEndpoints":{"dfs":"https://versionymg2k5haow6be3wlh.dfs.core.windows.net/","web":"https://versionymg2k5haow6be3wlh.z2.web.core.windows.net/","blob":"https://versionymg2k5haow6be3wlh.blob.core.windows.net/","queue":"https://versionymg2k5haow6be3wlh.queue.core.windows.net/","table":"https://versionymg2k5haow6be3wlh.table.core.windows.net/","file":"https://versionymg2k5haow6be3wlh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkngvostxvfzwz7hb2pyqpst4ekovxl4qehicnbufjmoug5injclokanwouejm77muega/providers/Microsoft.Storage/storageAccounts/versionyrdifxty6izovwb6i","name":"versionyrdifxty6izovwb6i","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:23:07.0385168Z","key2":"2021-09-07T02:23:07.0385168Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:23:06.9760160Z","primaryEndpoints":{"dfs":"https://versionyrdifxty6izovwb6i.dfs.core.windows.net/","web":"https://versionyrdifxty6izovwb6i.z2.web.core.windows.net/","blob":"https://versionyrdifxty6izovwb6i.blob.core.windows.net/","queue":"https://versionyrdifxty6izovwb6i.queue.core.windows.net/","table":"https://versionyrdifxty6izovwb6i.table.core.windows.net/","file":"https://versionyrdifxty6izovwb6i.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyuxvuaieuwauapmgpekzsx2djnxw7imdd44j7ye2q2bsscuowdlungp4mvqma3k4zdi3/providers/Microsoft.Storage/storageAccounts/versionzlxq5fbnucauv5vo7","name":"versionzlxq5fbnucauv5vo7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-25T03:40:01.2264205Z","key2":"2022-03-25T03:40:01.2264205Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-25T03:40:01.2264205Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-25T03:40:01.2264205Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-25T03:40:01.1169169Z","primaryEndpoints":{"dfs":"https://versionzlxq5fbnucauv5vo7.dfs.core.windows.net/","web":"https://versionzlxq5fbnucauv5vo7.z2.web.core.windows.net/","blob":"https://versionzlxq5fbnucauv5vo7.blob.core.windows.net/","queue":"https://versionzlxq5fbnucauv5vo7.queue.core.windows.net/","table":"https://versionzlxq5fbnucauv5vo7.table.core.windows.net/","file":"https://versionzlxq5fbnucauv5vo7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestglnitz57vqvc6itqwridomid64tyuijykukioisnaiyykplrweeehtxiwezec62slafz/providers/Microsoft.Storage/storageAccounts/versionztiuttcba4r3zu4ux","name":"versionztiuttcba4r3zu4ux","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-23T03:39:19.0719019Z","key2":"2022-02-23T03:39:19.0719019Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:39:19.0719019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:39:19.0719019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:39:18.9781248Z","primaryEndpoints":{"dfs":"https://versionztiuttcba4r3zu4ux.dfs.core.windows.net/","web":"https://versionztiuttcba4r3zu4ux.z2.web.core.windows.net/","blob":"https://versionztiuttcba4r3zu4ux.blob.core.windows.net/","queue":"https://versionztiuttcba4r3zu4ux.queue.core.windows.net/","table":"https://versionztiuttcba4r3zu4ux.table.core.windows.net/","file":"https://versionztiuttcba4r3zu4ux.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-06T07:56:33.4932788Z","key2":"2021-09-06T07:56:33.4932788Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-06T07:56:33.4151419Z","primaryEndpoints":{"dfs":"https://yssaeuap.dfs.core.windows.net/","web":"https://yssaeuap.z2.web.core.windows.net/","blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuap","name":"zhiyihuangsaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true},"keyCreationTime":{"key1":"2021-09-24T05:54:33.0930905Z","key2":"2021-09-24T05:54:33.0930905Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T05:54:33.0305911Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuap.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap.queue.core.windows.net/","table":"https://zhiyihuangsaeuap.table.core.windows.net/","file":"https://zhiyihuangsaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuap-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap-secondary.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuap-secondary.table.core.windows.net/"}}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adt-bulk-import-test/providers/Microsoft.Storage/storageAccounts/adtbulkimportstorage","name":"adtbulkimportstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-07T00:27:07.8961308Z","key2":"2022-07-07T00:27:07.8961308Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-07T00:27:07.8961308Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-07T00:27:07.8961308Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-07T00:27:07.7399077Z","primaryEndpoints":{"dfs":"https://adtbulkimportstorage.dfs.core.windows.net/","web":"https://adtbulkimportstorage.z13.web.core.windows.net/","blob":"https://adtbulkimportstorage.blob.core.windows.net/","queue":"https://adtbulkimportstorage.queue.core.windows.net/","table":"https://adtbulkimportstorage.table.core.windows.net/","file":"https://adtbulkimportstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adt-df-extension/providers/Microsoft.Storage/storageAccounts/adtdfextension","name":"adtdfextension","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-29T18:21:04.2046567Z","key2":"2022-07-29T18:21:04.2046567Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"table":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"queue":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T18:21:04.0640330Z","primaryEndpoints":{"dfs":"https://adtdfextension.dfs.core.windows.net/","web":"https://adtdfextension.z13.web.core.windows.net/","blob":"https://adtdfextension.blob.core.windows.net/","queue":"https://adtdfextension.queue.core.windows.net/","table":"https://adtdfextension.table.core.windows.net/","file":"https://adtdfextension.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://adtdfextension-secondary.dfs.core.windows.net/","web":"https://adtdfextension-secondary.z13.web.core.windows.net/","blob":"https://adtdfextension-secondary.blob.core.windows.net/","queue":"https://adtdfextension-secondary.queue.core.windows.net/","table":"https://adtdfextension-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Storage/storageAccounts/avagrawtest23","name":"avagrawtest23","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-02T22:04:35.9764387Z","key2":"2022-06-02T22:04:35.9764387Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-02T22:04:35.9764387Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-02T22:04:35.9764387Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-02T22:04:35.8201977Z","primaryEndpoints":{"dfs":"https://avagrawtest23.dfs.core.windows.net/","web":"https://avagrawtest23.z13.web.core.windows.net/","blob":"https://avagrawtest23.blob.core.windows.net/","queue":"https://avagrawtest23.queue.core.windows.net/","table":"https://avagrawtest23.table.core.windows.net/","file":"https://avagrawtest23.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://avagrawtest23-secondary.dfs.core.windows.net/","web":"https://avagrawtest23-secondary.z13.web.core.windows.net/","blob":"https://avagrawtest23-secondary.blob.core.windows.net/","queue":"https://avagrawtest23-secondary.queue.core.windows.net/","table":"https://avagrawtest23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/baltimorepp","name":"baltimorepp","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-20T18:04:57.3856063Z","key2":"2022-06-20T18:04:57.3856063Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T18:04:57.4012371Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T18:04:57.4012371Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-20T18:04:57.2449704Z","primaryEndpoints":{"dfs":"https://baltimorepp.dfs.core.windows.net/","web":"https://baltimorepp.z13.web.core.windows.net/","blob":"https://baltimorepp.blob.core.windows.net/","queue":"https://baltimorepp.queue.core.windows.net/","table":"https://baltimorepp.table.core.windows.net/","file":"https://baltimorepp.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://baltimorepp-secondary.dfs.core.windows.net/","web":"https://baltimorepp-secondary.z13.web.core.windows.net/","blob":"https://baltimorepp-secondary.blob.core.windows.net/","queue":"https://baltimorepp-secondary.queue.core.windows.net/","table":"https://baltimorepp-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/cs210032001c8853a3f","name":"cs210032001c8853a3f","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-09-06T19:47:02.5447463Z","key2":"2022-09-06T19:47:02.5447463Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T19:47:02.5447463Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T19:47:02.5447463Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-09-06T19:47:02.4041041Z","primaryEndpoints":{"dfs":"https://cs210032001c8853a3f.dfs.core.windows.net/","web":"https://cs210032001c8853a3f.z13.web.core.windows.net/","blob":"https://cs210032001c8853a3f.blob.core.windows.net/","queue":"https://cs210032001c8853a3f.queue.core.windows.net/","table":"https://cs210032001c8853a3f.table.core.windows.net/","file":"https://cs210032001c8853a3f.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/datahistorypp","name":"datahistorypp","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-19T17:10:36.1817423Z","key2":"2021-07-19T17:10:36.1817423Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-19T17:10:36.1817423Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-19T17:10:36.1817423Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-19T17:10:36.0879993Z","primaryEndpoints":{"dfs":"https://datahistorypp.dfs.core.windows.net/","web":"https://datahistorypp.z13.web.core.windows.net/","blob":"https://datahistorypp.blob.core.windows.net/","queue":"https://datahistorypp.queue.core.windows.net/","table":"https://datahistorypp.table.core.windows.net/","file":"https://datahistorypp.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://datahistorypp-secondary.dfs.core.windows.net/","web":"https://datahistorypp-secondary.z13.web.core.windows.net/","blob":"https://datahistorypp-secondary.blob.core.windows.net/","queue":"https://datahistorypp-secondary.queue.core.windows.net/","table":"https://datahistorypp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/hubstore11c8","name":"hubstore11c8","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"iot_resource":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5"},"properties":{"keyCreationTime":{"key1":"2022-10-18T17:37:23.2635736Z","key2":"2022-10-18T17:37:23.2635736Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T17:37:23.2635736Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T17:37:23.2635736Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-18T17:37:23.1072957Z","primaryEndpoints":{"dfs":"https://hubstore11c8.dfs.core.windows.net/","web":"https://hubstore11c8.z13.web.core.windows.net/","blob":"https://hubstore11c8.blob.core.windows.net/","queue":"https://hubstore11c8.queue.core.windows.net/","table":"https://hubstore11c8.table.core.windows.net/","file":"https://hubstore11c8.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://hubstore11c8-secondary.dfs.core.windows.net/","web":"https://hubstore11c8-secondary.z13.web.core.windows.net/","blob":"https://hubstore11c8-secondary.blob.core.windows.net/","queue":"https://hubstore11c8-secondary.queue.core.windows.net/","table":"https://hubstore11c8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Storage/storageAccounts/identitiestest","name":"identitiestest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-10-06T18:12:55.8361914Z","key2":"2022-10-06T18:12:55.8361914Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-06T18:12:55.8518461Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-06T18:12:55.8518461Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-06T18:12:55.6799956Z","primaryEndpoints":{"dfs":"https://identitiestest.dfs.core.windows.net/","web":"https://identitiestest.z13.web.core.windows.net/","blob":"https://identitiestest.blob.core.windows.net/","queue":"https://identitiestest.queue.core.windows.net/","table":"https://identitiestest.table.core.windows.net/","file":"https://identitiestest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://identitiestest-secondary.dfs.core.windows.net/","web":"https://identitiestest-secondary.z13.web.core.windows.net/","blob":"https://identitiestest-secondary.blob.core.windows.net/","queue":"https://identitiestest-secondary.queue.core.windows.net/","table":"https://identitiestest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iot-hub-extension-dogfood/providers/Microsoft.Storage/storageAccounts/iothubdfextension","name":"iothubdfextension","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-08T20:04:13.2606504Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-08T20:04:13.2606504Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-12-08T20:04:13.1512596Z","primaryEndpoints":{"dfs":"https://iothubdfextension.dfs.core.windows.net/","web":"https://iothubdfextension.z13.web.core.windows.net/","blob":"https://iothubdfextension.blob.core.windows.net/","queue":"https://iothubdfextension.queue.core.windows.net/","table":"https://iothubdfextension.table.core.windows.net/","file":"https://iothubdfextension.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://iothubdfextension-secondary.dfs.core.windows.net/","web":"https://iothubdfextension-secondary.z13.web.core.windows.net/","blob":"https://iothubdfextension-secondary.blob.core.windows.net/","queue":"https://iothubdfextension-secondary.queue.core.windows.net/","table":"https://iothubdfextension-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Storage/storageAccounts/jiacjutest","name":"jiacjutest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-16T00:00:42.1218840Z","key2":"2021-11-16T00:00:42.1218840Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-16T00:00:42.1218840Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-16T00:00:42.1218840Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-16T00:00:41.8874796Z","primaryEndpoints":{"blob":"https://jiacjutest.blob.core.windows.net/","queue":"https://jiacjutest.queue.core.windows.net/","table":"https://jiacjutest.table.core.windows.net/","file":"https://jiacjutest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avins-models-repo-test/providers/Microsoft.Storage/storageAccounts/modelsrepotest230291","name":"modelsrepotest230291","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-11T22:28:39.5386501Z","key2":"2022-05-11T22:28:39.5386501Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T22:28:39.5386501Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T22:28:39.5386501Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-11T22:28:39.3511797Z","primaryEndpoints":{"dfs":"https://modelsrepotest230291.dfs.core.windows.net/","web":"https://modelsrepotest230291.z13.web.core.windows.net/","blob":"https://modelsrepotest230291.blob.core.windows.net/","queue":"https://modelsrepotest230291.queue.core.windows.net/","table":"https://modelsrepotest230291.table.core.windows.net/","file":"https://modelsrepotest230291.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://modelsrepotest230291-secondary.dfs.core.windows.net/","web":"https://modelsrepotest230291-secondary.z13.web.core.windows.net/","blob":"https://modelsrepotest230291-secondary.blob.core.windows.net/","queue":"https://modelsrepotest230291-secondary.queue.core.windows.net/","table":"https://modelsrepotest230291-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/edge_billable_modules/providers/Microsoft.Storage/storageAccounts/privatepreviewbilledge","name":"privatepreviewbilledge","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-01-14T03:26:59.5305000Z","key2":"2022-01-14T03:26:59.5305000Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-14T03:26:59.5305000Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-14T03:26:59.5305000Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-14T03:26:59.3898773Z","primaryEndpoints":{"dfs":"https://privatepreviewbilledge.dfs.core.windows.net/","web":"https://privatepreviewbilledge.z13.web.core.windows.net/","blob":"https://privatepreviewbilledge.blob.core.windows.net/","queue":"https://privatepreviewbilledge.queue.core.windows.net/","table":"https://privatepreviewbilledge.table.core.windows.net/","file":"https://privatepreviewbilledge.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://privatepreviewbilledge-secondary.dfs.core.windows.net/","web":"https://privatepreviewbilledge-secondary.z13.web.core.windows.net/","blob":"https://privatepreviewbilledge-secondary.blob.core.windows.net/","queue":"https://privatepreviewbilledge-secondary.queue.core.windows.net/","table":"https://privatepreviewbilledge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Storage/storageAccounts/raharrideviceupdates","name":"raharrideviceupdates","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-10T21:56:24.8723906Z","key2":"2021-09-10T21:56:24.8723906Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T21:56:24.8723906Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T21:56:24.8723906Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-09-10T21:56:24.7786183Z","primaryEndpoints":{"blob":"https://raharrideviceupdates.blob.core.windows.net/","queue":"https://raharrideviceupdates.queue.core.windows.net/","table":"https://raharrideviceupdates.table.core.windows.net/","file":"https://raharrideviceupdates.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Storage/storageAccounts/ridotempdata","name":"ridotempdata","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-19T21:49:24.0720856Z","key2":"2021-04-19T21:49:24.0720856Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-19T21:49:24.0720856Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-19T21:49:24.0720856Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-19T21:49:23.9627356Z","primaryEndpoints":{"dfs":"https://ridotempdata.dfs.core.windows.net/","web":"https://ridotempdata.z13.web.core.windows.net/","blob":"https://ridotempdata.blob.core.windows.net/","queue":"https://ridotempdata.queue.core.windows.net/","table":"https://ridotempdata.table.core.windows.net/","file":"https://ridotempdata.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ridotempdata-secondary.dfs.core.windows.net/","web":"https://ridotempdata-secondary.z13.web.core.windows.net/","blob":"https://ridotempdata-secondary.blob.core.windows.net/","queue":"https://ridotempdata-secondary.queue.core.windows.net/","table":"https://ridotempdata-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslerstorage","name":"rkesslerstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-31T04:38:45.5328731Z","key2":"2021-08-31T04:38:45.5328731Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T04:38:45.5328731Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T04:38:45.5328731Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T04:38:45.4234853Z","primaryEndpoints":{"dfs":"https://rkesslerstorage.dfs.core.windows.net/","web":"https://rkesslerstorage.z13.web.core.windows.net/","blob":"https://rkesslerstorage.blob.core.windows.net/","queue":"https://rkesslerstorage.queue.core.windows.net/","table":"https://rkesslerstorage.table.core.windows.net/","file":"https://rkesslerstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://rkesslerstorage-secondary.dfs.core.windows.net/","web":"https://rkesslerstorage-secondary.z13.web.core.windows.net/","blob":"https://rkesslerstorage-secondary.blob.core.windows.net/","queue":"https://rkesslerstorage-secondary.queue.core.windows.net/","table":"https://rkesslerstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/vilitstore","name":"vilitstore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-23T20:09:36.4369560Z","key2":"2021-08-23T20:09:36.4369560Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T20:09:36.4369560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T20:09:36.4369560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T20:09:36.3275868Z","primaryEndpoints":{"dfs":"https://vilitstore.dfs.core.windows.net/","web":"https://vilitstore.z13.web.core.windows.net/","blob":"https://vilitstore.blob.core.windows.net/","queue":"https://vilitstore.queue.core.windows.net/","table":"https://vilitstore.table.core.windows.net/","file":"https://vilitstore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"Logging, + Metrics, 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.rglpb44c77ofpbl2aznugwkyurgp4bganvrh364eeuwcyvajlpagbqsbjb7rd7fukrf/providers/Microsoft.Storage/storageAccounts/clitest2tvnubwb6ky2be36j","name":"clitest2tvnubwb6ky2be36j","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:03:19.3282229Z","key2":"2022-10-14T20:03:19.3282229Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:03:19.3438435Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:03:19.3438435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:03:19.2344681Z","primaryEndpoints":{"blob":"https://clitest2tvnubwb6ky2be36j.blob.core.windows.net/","queue":"https://clitest2tvnubwb6ky2be36j.queue.core.windows.net/","table":"https://clitest2tvnubwb6ky2be36j.table.core.windows.net/","file":"https://clitest2tvnubwb6ky2be36j.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.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Storage/storageAccounts/clitest5qkwfloklp7b2g7ng","name":"clitest5qkwfloklp7b2g7ng","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:04:21.9696331Z","key2":"2022-10-14T20:04:21.9696331Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:04:21.9852777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:04:21.9852777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:04:21.8758874Z","primaryEndpoints":{"blob":"https://clitest5qkwfloklp7b2g7ng.blob.core.windows.net/","queue":"https://clitest5qkwfloklp7b2g7ng.queue.core.windows.net/","table":"https://clitest5qkwfloklp7b2g7ng.table.core.windows.net/","file":"https://clitest5qkwfloklp7b2g7ng.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.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Storage/storageAccounts/clitesteklqzuyizgeeenn75","name":"clitesteklqzuyizgeeenn75","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:48:08.1733907Z","key2":"2022-10-18T18:48:08.1733907Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.1733907Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.1733907Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:48:08.0640087Z","primaryEndpoints":{"blob":"https://clitesteklqzuyizgeeenn75.blob.core.windows.net/","queue":"https://clitesteklqzuyizgeeenn75.queue.core.windows.net/","table":"https://clitesteklqzuyizgeeenn75.table.core.windows.net/","file":"https://clitesteklqzuyizgeeenn75.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":{"keyCreationTime":{"key1":"2022-10-18T19:20:21.9923401Z","key2":"2022-10-18T19:20:21.9923401Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T19:20:22.0079851Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T19:20:22.0079851Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T19:20:21.8829970Z","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.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Storage/storageAccounts/clitestigva6doxivhvo5mqm","name":"clitestigva6doxivhvo5mqm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:30:07.9546953Z","key2":"2022-10-18T18:30:07.9546953Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:07.9546953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:07.9546953Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:30:07.8453184Z","primaryEndpoints":{"blob":"https://clitestigva6doxivhvo5mqm.blob.core.windows.net/","queue":"https://clitestigva6doxivhvo5mqm.queue.core.windows.net/","table":"https://clitestigva6doxivhvo5mqm.table.core.windows.net/","file":"https://clitestigva6doxivhvo5mqm.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.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Storage/storageAccounts/clitestmmxqd6sx3bmeg75oa","name":"clitestmmxqd6sx3bmeg75oa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:31:14.4418256Z","key2":"2022-10-14T20:31:14.4418256Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.4574466Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.4574466Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:31:14.3324427Z","primaryEndpoints":{"blob":"https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/","queue":"https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/","table":"https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/","file":"https://clitestmmxqd6sx3bmeg75oa.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.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Storage/storageAccounts/clitestwbufuo762kwfy7o53","name":"clitestwbufuo762kwfy7o53","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:48:08.7846725Z","key2":"2022-10-18T18:48:08.7846725Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.7983950Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.7983950Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:48:08.6577638Z","primaryEndpoints":{"blob":"https://clitestwbufuo762kwfy7o53.blob.core.windows.net/","queue":"https://clitestwbufuo762kwfy7o53.queue.core.windows.net/","table":"https://clitestwbufuo762kwfy7o53.table.core.windows.net/","file":"https://clitestwbufuo762kwfy7o53.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.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Storage/storageAccounts/clitestx5vvad2p4lj422dtt","name":"clitestx5vvad2p4lj422dtt","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:31:14.2074274Z","key2":"2022-10-14T20:31:14.2074274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.2230642Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.2230642Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:31:14.0981110Z","primaryEndpoints":{"blob":"https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/","queue":"https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/","table":"https://clitestx5vvad2p4lj422dtt.table.core.windows.net/","file":"https://clitestx5vvad2p4lj422dtt.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.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Storage/storageAccounts/clitestxr6xomz7iii3qglyv","name":"clitestxr6xomz7iii3qglyv","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:58:57.6340465Z","key2":"2022-10-14T20:58:57.6340465Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:58:57.6340465Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:58:57.6340465Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:58:57.5246374Z","primaryEndpoints":{"blob":"https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/","queue":"https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/","table":"https://clitestxr6xomz7iii3qglyv.table.core.windows.net/","file":"https://clitestxr6xomz7iii3qglyv.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.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Storage/storageAccounts/clitestzzaeirfu6bbwfj4ja","name":"clitestzzaeirfu6bbwfj4ja","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:30:08.1422082Z","key2":"2022-10-18T18:30:08.1422082Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:08.1578272Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:08.1578272Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:30:08.0484744Z","primaryEndpoints":{"blob":"https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/","queue":"https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/","table":"https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/","file":"https://clitestzzaeirfu6bbwfj4ja.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/cs4100300009acbc8c3","name":"cs4100300009acbc8c3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-09T18:44:35.6761185Z","key2":"2022-02-09T18:44:35.6761185Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-09T18:44:35.6761185Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-09T18:44:35.6761185Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-09T18:44:35.5823418Z","primaryEndpoints":{"dfs":"https://cs4100300009acbc8c3.dfs.core.windows.net/","web":"https://cs4100300009acbc8c3.z22.web.core.windows.net/","blob":"https://cs4100300009acbc8c3.blob.core.windows.net/","queue":"https://cs4100300009acbc8c3.queue.core.windows.net/","table":"https://cs4100300009acbc8c3.table.core.windows.net/","file":"https://cs4100300009acbc8c3.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/cs41003200066a7dd52","name":"cs41003200066a7dd52","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-18T17:36:45.6533903Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-18T17:36:45.6533903Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-18T17:36:45.5752594Z","primaryEndpoints":{"dfs":"https://cs41003200066a7dd52.dfs.core.windows.net/","web":"https://cs41003200066a7dd52.z22.web.core.windows.net/","blob":"https://cs41003200066a7dd52.blob.core.windows.net/","queue":"https://cs41003200066a7dd52.queue.core.windows.net/","table":"https://cs41003200066a7dd52.table.core.windows.net/","file":"https://cs41003200066a7dd52.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/cs41003200200848f41","name":"cs41003200200848f41","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-06-08T18:15:57.8153697Z","key2":"2022-06-08T18:15:57.8153697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-08T18:15:57.8153697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-08T18:15:57.8153697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-08T18:15:57.7216712Z","primaryEndpoints":{"dfs":"https://cs41003200200848f41.dfs.core.windows.net/","web":"https://cs41003200200848f41.z22.web.core.windows.net/","blob":"https://cs41003200200848f41.blob.core.windows.net/","queue":"https://cs41003200200848f41.queue.core.windows.net/","table":"https://cs41003200200848f41.table.core.windows.net/","file":"https://cs41003200200848f41.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/cs410033fff96467dc6","name":"cs410033fff96467dc6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-12-13T17:13:30.0923471Z","key2":"2021-12-13T17:13:30.0923471Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-13T17:13:30.0923471Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-13T17:13:30.0923471Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-13T17:13:29.9986006Z","primaryEndpoints":{"dfs":"https://cs410033fff96467dc6.dfs.core.windows.net/","web":"https://cs410033fff96467dc6.z22.web.core.windows.net/","blob":"https://cs410033fff96467dc6.blob.core.windows.net/","queue":"https://cs410033fff96467dc6.queue.core.windows.net/","table":"https://cs410033fff96467dc6.table.core.windows.net/","file":"https://cs410033fff96467dc6.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/cs410037ffe801b4af4","name":"cs410037ffe801b4af4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T12:02:15.3272698Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T12:02:15.3272698Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-20T12:02:15.2647454Z","primaryEndpoints":{"dfs":"https://cs410037ffe801b4af4.dfs.core.windows.net/","web":"https://cs410037ffe801b4af4.z22.web.core.windows.net/","blob":"https://cs410037ffe801b4af4.blob.core.windows.net/","queue":"https://cs410037ffe801b4af4.queue.core.windows.net/","table":"https://cs410037ffe801b4af4.table.core.windows.net/","file":"https://cs410037ffe801b4af4.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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iotqrcodes/providers/Microsoft.Storage/storageAccounts/iotqrcodes","name":"iotqrcodes","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-29T18:48:51.7888406Z","key2":"2021-07-29T18:48:51.7888406Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T18:48:51.7888406Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T18:48:51.7888406Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-29T18:48:51.7263422Z","primaryEndpoints":{"dfs":"https://iotqrcodes.dfs.core.windows.net/","web":"https://iotqrcodes.z22.web.core.windows.net/","blob":"https://iotqrcodes.blob.core.windows.net/","queue":"https://iotqrcodes.queue.core.windows.net/","table":"https://iotqrcodes.table.core.windows.net/","file":"https://iotqrcodes.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-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320004055e7df","name":"cs7100320004055e7df","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-08-25T17:36:35.3733486Z","key2":"2022-08-25T17:36:35.3733486Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T17:36:35.7639780Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T17:36:35.7639780Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-25T17:36:35.2795833Z","primaryEndpoints":{"dfs":"https://cs7100320004055e7df.dfs.core.windows.net/","web":"https://cs7100320004055e7df.z21.web.core.windows.net/","blob":"https://cs7100320004055e7df.blob.core.windows.net/","queue":"https://cs7100320004055e7df.queue.core.windows.net/","table":"https://cs7100320004055e7df.table.core.windows.net/","file":"https://cs7100320004055e7df.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/iliesrgbf29","name":"iliesrgbf29","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-21T18:06:13.8315498Z","key2":"2022-06-21T18:06:13.8315498Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-21T18:06:13.8315498Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-21T18:06:13.8315498Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-21T18:06:13.7379857Z","primaryEndpoints":{"blob":"https://iliesrgbf29.blob.core.windows.net/","queue":"https://iliesrgbf29.queue.core.windows.net/","table":"https://iliesrgbf29.table.core.windows.net/","file":"https://iliesrgbf29.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/vilit8722","name":"vilit8722","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-11T18:59:07.4717431Z","key2":"2022-05-11T18:59:07.4717431Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T18:59:07.4717431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T18:59:07.4717431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-11T18:59:07.3623120Z","primaryEndpoints":{"blob":"https://vilit8722.blob.core.windows.net/","queue":"https://vilit8722.queue.core.windows.net/","table":"https://vilit8722.table.core.windows.net/","file":"https://vilit8722.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Storage/storageAccounts/vilitehtoazmon8c23","name":"vilitehtoazmon8c23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T17:19:46.9319689Z","key2":"2022-03-31T17:19:46.9319689Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T17:19:46.9319689Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T17:19:46.9319689Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-31T17:19:46.8225518Z","primaryEndpoints":{"blob":"https://vilitehtoazmon8c23.blob.core.windows.net/","queue":"https://vilitehtoazmon8c23.queue.core.windows.net/","table":"https://vilitehtoazmon8c23.table.core.windows.net/","file":"https://vilitehtoazmon8c23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dt_test/providers/Microsoft.Storage/storageAccounts/wqklkwjkjwejkwe","name":"wqklkwjkjwejkwe","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-03-16T15:47:52.5520552Z","key2":"2021-03-16T15:47:52.5520552Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-16T15:47:52.5520552Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-16T15:47:52.5520552Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-16T15:47:52.4739156Z","primaryEndpoints":{"dfs":"https://wqklkwjkjwejkwe.dfs.core.windows.net/","web":"https://wqklkwjkjwejkwe.z19.web.core.windows.net/","blob":"https://wqklkwjkjwejkwe.blob.core.windows.net/","queue":"https://wqklkwjkjwejkwe.queue.core.windows.net/","table":"https://wqklkwjkjwejkwe.table.core.windows.net/","file":"https://wqklkwjkjwejkwe.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Storage/storageAccounts/aducli","name":"aducli","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"dnsEndpointType":"Standard","allowedCopyScope":"AAD","defaultToOAuthAuthentication":true,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-21T18:11:40.7795178Z","key2":"2022-07-21T18:11:40.7795178Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T18:11:40.7951256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T18:11:40.7951256Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-21T18:11:40.6857415Z","primaryEndpoints":{"dfs":"https://aducli.dfs.core.windows.net/","web":"https://aducli.z5.web.core.windows.net/","blob":"https://aducli.blob.core.windows.net/","queue":"https://aducli.queue.core.windows.net/","table":"https://aducli.table.core.windows.net/","file":"https://aducli.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://aducli-secondary.dfs.core.windows.net/","web":"https://aducli-secondary.z5.web.core.windows.net/","blob":"https://aducli-secondary.blob.core.windows.net/","queue":"https://aducli-secondary.queue.core.windows.net/","table":"https://aducli-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Storage/storageAccounts/azcliintteststorage","name":"azcliintteststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-18T00:47:50.5253938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-18T00:47:50.5253938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-18T00:47:50.4473020Z","primaryEndpoints":{"dfs":"https://azcliintteststorage.dfs.core.windows.net/","web":"https://azcliintteststorage.z5.web.core.windows.net/","blob":"https://azcliintteststorage.blob.core.windows.net/","queue":"https://azcliintteststorage.queue.core.windows.net/","table":"https://azcliintteststorage.table.core.windows.net/","file":"https://azcliintteststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azcliintteststorage-secondary.dfs.core.windows.net/","web":"https://azcliintteststorage-secondary.z5.web.core.windows.net/","blob":"https://azcliintteststorage-secondary.blob.core.windows.net/","queue":"https://azcliintteststorage-secondary.queue.core.windows.net/","table":"https://azcliintteststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventualC/providers/Microsoft.Storage/storageAccounts/dmrstore","name":"dmrstore","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T01:26:42.2484427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T01:26:42.2484427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-20T01:26:42.1546871Z","primaryEndpoints":{"dfs":"https://dmrstore.dfs.core.windows.net/","web":"https://dmrstore.z5.web.core.windows.net/","blob":"https://dmrstore.blob.core.windows.net/","queue":"https://dmrstore.queue.core.windows.net/","table":"https://dmrstore.table.core.windows.net/","file":"https://dmrstore.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rkiotstorage2","name":"rkiotstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T23:15:17.7346844Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T23:15:17.7346844Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-23T23:15:17.6409336Z","primaryEndpoints":{"dfs":"https://rkiotstorage2.dfs.core.windows.net/","web":"https://rkiotstorage2.z5.web.core.windows.net/","blob":"https://rkiotstorage2.blob.core.windows.net/","queue":"https://rkiotstorage2.queue.core.windows.net/","table":"https://rkiotstorage2.table.core.windows.net/","file":"https://rkiotstorage2.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"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":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"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"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rktsistorage","name":"rktsistorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-05T17:19:34.7436222Z","key2":"2021-04-05T17:19:34.7436222Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-05T17:19:34.7592460Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-05T17:19:34.7592460Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-05T17:19:34.6498962Z","primaryEndpoints":{"dfs":"https://rktsistorage.dfs.core.windows.net/","web":"https://rktsistorage.z5.web.core.windows.net/","blob":"https://rktsistorage.blob.core.windows.net/","queue":"https://rktsistorage.queue.core.windows.net/","table":"https://rktsistorage.table.core.windows.net/","file":"https://rktsistorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/storageaccountrkiot8c13","name":"storageaccountrkiot8c13","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-16T22:15:10.5759611Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-16T22:15:10.5759611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-09-16T22:15:10.4821881Z","primaryEndpoints":{"blob":"https://storageaccountrkiot8c13.blob.core.windows.net/","queue":"https://storageaccountrkiot8c13.queue.core.windows.net/","table":"https://storageaccountrkiot8c13.table.core.windows.net/","file":"https://storageaccountrkiot8c13.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/storageaccountrkiotb9e5","name":"storageaccountrkiotb9e5","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T19:30:15.3804746Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T19:30:15.3804746Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-02-23T19:30:15.3023373Z","primaryEndpoints":{"blob":"https://storageaccountrkiotb9e5.blob.core.windows.net/","queue":"https://storageaccountrkiotb9e5.queue.core.windows.net/","table":"https://storageaccountrkiotb9e5.table.core.windows.net/","file":"https://storageaccountrkiotb9e5.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/testrevocation","name":"testrevocation","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-10T19:00:22.0329798Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-10T19:00:22.0329798Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-10T19:00:21.9705172Z","primaryEndpoints":{"dfs":"https://testrevocation.dfs.core.windows.net/","web":"https://testrevocation.z5.web.core.windows.net/","blob":"https://testrevocation.blob.core.windows.net/","queue":"https://testrevocation.queue.core.windows.net/","table":"https://testrevocation.table.core.windows.net/","file":"https://testrevocation.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testrevocation-secondary.dfs.core.windows.net/","web":"https://testrevocation-secondary.z5.web.core.windows.net/","blob":"https://testrevocation-secondary.blob.core.windows.net/","queue":"https://testrevocation-secondary.queue.core.windows.net/","table":"https://testrevocation-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslereasteaup2storage","name":"rkesslereasteaup2storage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-28T16:38:28.5298643Z","key2":"2021-10-28T16:38:28.5298643Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T16:38:28.5298643Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T16:38:28.5298643Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T16:38:28.4517312Z","primaryEndpoints":{"dfs":"https://rkesslereasteaup2storage.dfs.core.windows.net/","web":"https://rkesslereasteaup2storage.z3.web.core.windows.net/","blob":"https://rkesslereasteaup2storage.blob.core.windows.net/","queue":"https://rkesslereasteaup2storage.queue.core.windows.net/","table":"https://rkesslereasteaup2storage.table.core.windows.net/","file":"https://rkesslereasteaup2storage.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://rkesslereasteaup2storage-secondary.dfs.core.windows.net/","web":"https://rkesslereasteaup2storage-secondary.z3.web.core.windows.net/","blob":"https://rkesslereasteaup2storage-secondary.blob.core.windows.net/","queue":"https://rkesslereasteaup2storage-secondary.queue.core.windows.net/","table":"https://rkesslereasteaup2storage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslerstoragev1","name":"rkesslerstoragev1","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-31T15:39:41.4036635Z","key2":"2021-08-31T15:39:41.4036635Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T15:39:41.4193120Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T15:39:41.4193120Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-31T15:39:41.3411838Z","primaryEndpoints":{"blob":"https://rkesslerstoragev1.blob.core.windows.net/","queue":"https://rkesslerstoragev1.queue.core.windows.net/","table":"https://rkesslerstoragev1.table.core.windows.net/","file":"https://rkesslerstoragev1.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://rkesslerstoragev1-secondary.blob.core.windows.net/","queue":"https://rkesslerstoragev1-secondary.queue.core.windows.net/","table":"https://rkesslerstoragev1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Storage/storageAccounts/jeremyjonesstorage1","name":"jeremyjonesstorage1","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-05-31T20:02:55.4385674Z","key2":"2022-05-31T20:02:55.4385674Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-31T20:02:55.4385674Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-31T20:02:55.4385674Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-31T20:02:55.3760966Z","primaryEndpoints":{"dfs":"https://jeremyjonesstorage1.dfs.core.windows.net/","web":"https://jeremyjonesstorage1.z2.web.core.windows.net/","blob":"https://jeremyjonesstorage1.blob.core.windows.net/","queue":"https://jeremyjonesstorage1.queue.core.windows.net/","table":"https://jeremyjonesstorage1.table.core.windows.net/","file":"https://jeremyjonesstorage1.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '513767' + - '79996' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 09:57:46 GMT + - Tue, 18 Oct 2022 19:20:42 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff x-ms-original-request-ids: - - b65f6dfd-a679-418b-bc3c-32370a43e3ce - - 5d5e4500-b085-45f7-8d63-ce7f68170356 - - 234b90fd-ac53-492b-949b-c8654ef5991d - - bbc4df6e-b949-4ac4-ad7a-fa32168ec259 - - 5c0c75e5-c86a-4094-baae-ef3e09c1d871 - - 377b17a1-182e-441f-9d40-cfe185cc4dc9 - - f33372af-7e4f-4452-800d-88079474a3c8 - - 2f156582-3bb3-4dcc-8a90-92e3346c5ed4 - - a84ee423-11b9-4525-a531-5bfc4447e13c + - 713bddeb-3f5f-4b47-9542-01c397c58ef9 + - ba5ecb6f-d79c-4424-ba2a-dd1f299adbf8 + - a3f420e0-bda7-441a-a575-974a6b22d1bd + - 2ab36624-a552-4e90-b734-2c9d0d9b68a9 + - a792473e-db6b-4ce4-81e2-97838e0db7d5 + - c5bb410a-5b5b-479b-8fe9-c64dd413d00f + - 03199157-defc-495a-9ab2-86049ead0592 + - e04ec1f5-c8e1-43e4-94ae-cb2e92b93301 status: code: 200 message: OK @@ -69,12 +67,12 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2022-05-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-08-31T09:57:21.6205546Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-08-31T09:57:21.6205546Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-10-18T19:20:21.9923401Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-10-18T19:20:21.9923401Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -83,7 +81,7 @@ interactions: content-type: - application/json date: - - Wed, 31 Aug 2022 09:57:46 GMT + - Tue, 18 Oct 2022 19:20:42 GMT expires: - '-1' pragma: @@ -119,9 +117,9 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - AZURECLI/2.39.0 azsdk-python-storage-blob/12.12.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-storage-blob/12.12.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) x-ms-date: - - Wed, 31 Aug 2022 09:57:46 GMT + - Tue, 18 Oct 2022 19:20:42 GMT x-ms-version: - '2021-06-08' method: PUT @@ -133,11 +131,11 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 09:57:49 GMT + - Tue, 18 Oct 2022 19:20:43 GMT etag: - - '"0x8DA8B37439DACA2"' + - '"0x8DAB13DD9E707A5"' last-modified: - - Wed, 31 Aug 2022 09:57:50 GMT + - Tue, 18 Oct 2022 19:20:43 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -161,12 +159,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2022-05-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-08-31T09:57:21.6205546Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-08-31T09:57:21.6205546Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-10-18T19:20:21.9923401Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-10-18T19:20:21.9923401Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -175,7 +173,7 @@ interactions: content-type: - application/json date: - - Wed, 31 Aug 2022 09:57:50 GMT + - Tue, 18 Oct 2022 19:20:43 GMT expires: - '-1' pragma: @@ -209,12 +207,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2022-05-01 response: body: - string: '{"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":{"keyCreationTime":{"key1":"2022-08-31T09:57:21.6205546Z","key2":"2022-08-31T09:57:21.6205546Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T09:57:21.6205546Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T09:57:21.6205546Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-31T09:57:21.5112102Z","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"}}' + string: '{"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":{"keyCreationTime":{"key1":"2022-10-18T19:20:21.9923401Z","key2":"2022-10-18T19:20:21.9923401Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T19:20:22.0079851Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T19:20:22.0079851Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T19:20:21.8829970Z","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"}}' headers: cache-control: - no-cache @@ -223,7 +221,7 @@ interactions: content-type: - application/json date: - - Wed, 31 Aug 2022 09:57:51 GMT + - Tue, 18 Oct 2022 19:20:43 GMT expires: - '-1' pragma: @@ -255,12 +253,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2022-05-01 response: body: - string: '{"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":{"keyCreationTime":{"key1":"2022-08-31T09:57:21.6205546Z","key2":"2022-08-31T09:57:21.6205546Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T09:57:21.6205546Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-31T09:57:21.6205546Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-08-31T09:57:21.5112102Z","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"}}' + string: '{"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":{"keyCreationTime":{"key1":"2022-10-18T19:20:21.9923401Z","key2":"2022-10-18T19:20:21.9923401Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T19:20:22.0079851Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T19:20:22.0079851Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T19:20:21.8829970Z","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"}}' headers: cache-control: - no-cache @@ -269,7 +267,7 @@ interactions: content-type: - application/json date: - - Wed, 31 Aug 2022 09:57:52 GMT + - Tue, 18 Oct 2022 19:20:43 GMT expires: - '-1' pragma: @@ -278,6 +276,10 @@ interactions: - Microsoft-Azure-Storage-Resource-Provider/1.0,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 status: @@ -297,12 +299,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-08-31T09:57:04Z"},"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":"2022-10-18T19:20:18Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -311,7 +313,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 09:57:53 GMT + - Tue, 18 Oct 2022 19:20:43 GMT expires: - '-1' pragma: @@ -343,12 +345,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006?api-version=2022-01-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006","name":"iot-user-identity000006","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97","clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006","name":"iot-user-identity000006","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50","clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7"}}' headers: cache-control: - no-cache @@ -357,7 +359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 09:58:01 GMT + - Tue, 18 Oct 2022 19:20:44 GMT expires: - '-1' location: @@ -387,12 +389,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-08-31T09:57:04Z"},"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":"2022-10-18T19:20:18Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -401,7 +403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 09:58:01 GMT + - Tue, 18 Oct 2022 19:20:45 GMT expires: - '-1' pragma: @@ -433,12 +435,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007?api-version=2022-01-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007","name":"iot-user-identity000007","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"464c30e6-d9f1-40e6-8f21-4a37b38e2a69","clientId":"9c1cce91-22b5-40a3-b393-c2ca33d317b5"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007","name":"iot-user-identity000007","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"62b4a490-abc2-4999-9ab1-6f21e7de6b1d","clientId":"c0c2dc6f-54d0-4499-9750-dc81af1bb8f8"}}' headers: cache-control: - no-cache @@ -447,7 +449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 09:58:09 GMT + - Tue, 18 Oct 2022 19:20:46 GMT expires: - '-1' location: @@ -477,12 +479,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-08-31T09:57:04Z"},"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":"2022-10-18T19:20:18Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -491,7 +493,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 09:58:09 GMT + - Tue, 18 Oct 2022 19:20:46 GMT expires: - '-1' pragma: @@ -523,12 +525,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008?api-version=2022-01-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008","name":"iot-user-identity000008","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc","clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008","name":"iot-user-identity000008","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c","clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806"}}' headers: cache-control: - no-cache @@ -537,7 +539,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 09:58:17 GMT + - Tue, 18 Oct 2022 19:20:47 GMT expires: - '-1' location: @@ -549,7 +551,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -581,16 +583,16 @@ interactions: - -n -g --sku --location --mintls --mi-system-assigned --mi-user-assigned --role --scopes User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","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":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMWI4MmEyYzQtZjM2Ny00ZjYxLWJjOWMtZTBhZTYxNzFlMmQ3O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzJhYzkyMWItYTg5ZC00NTBkLTg0MzYtZTBjMDg5Y2MyZWI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -598,7 +600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 09:58:29 GMT + - Tue, 18 Oct 2022 19:20:53 GMT expires: - '-1' pragma: @@ -610,7 +612,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 201 message: Created @@ -629,9 +631,56 @@ interactions: - -n -g --sku --location --mintls --mi-system-assigned --mi-user-assigned --role --scopes User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzJhYzkyMWItYTg5ZC00NTBkLTg0MzYtZTBjMDg5Y2MyZWI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:20: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --location --mintls --mi-system-assigned --mi-user-assigned --role + --scopes + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMWI4MmEyYzQtZjM2Ny00ZjYxLWJjOWMtZTBhZTYxNzFlMmQ3O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzJhYzkyMWItYTg5ZC00NTBkLTg0MzYtZTBjMDg5Y2MyZWI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -643,7 +692,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 09:58:59 GMT + - Tue, 18 Oct 2022 19:21:23 GMT expires: - '-1' pragma: @@ -676,9 +725,9 @@ interactions: - -n -g --sku --location --mintls --mi-system-assigned --mi-user-assigned --role --scopes User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMWI4MmEyYzQtZjM2Ny00ZjYxLWJjOWMtZTBhZTYxNzFlMmQ3O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzJhYzkyMWItYTg5ZC00NTBkLTg0MzYtZTBjMDg5Y2MyZWI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -690,7 +739,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 09:59:29 GMT + - Tue, 18 Oct 2022 19:21:52 GMT expires: - '-1' pragma: @@ -723,9 +772,9 @@ interactions: - -n -g --sku --location --mintls --mi-system-assigned --mi-user-assigned --role --scopes User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMWI4MmEyYzQtZjM2Ny00ZjYxLWJjOWMtZTBhZTYxNzFlMmQ3O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzJhYzkyMWItYTg5ZC00NTBkLTg0MzYtZTBjMDg5Y2MyZWI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -737,7 +786,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:00:00 GMT + - Tue, 18 Oct 2022 19:22:22 GMT expires: - '-1' pragma: @@ -770,9 +819,9 @@ interactions: - -n -g --sku --location --mintls --mi-system-assigned --mi-user-assigned --role --scopes User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMWI4MmEyYzQtZjM2Ny00ZjYxLWJjOWMtZTBhZTYxNzFlMmQ3O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzJhYzkyMWItYTg5ZC00NTBkLTg0MzYtZTBjMDg5Y2MyZWI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -784,7 +833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:00:30 GMT + - Tue, 18 Oct 2022 19:22:53 GMT expires: - '-1' pragma: @@ -817,9 +866,9 @@ interactions: - -n -g --sku --location --mintls --mi-system-assigned --mi-user-assigned --role --scopes User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMWI4MmEyYzQtZjM2Ny00ZjYxLWJjOWMtZTBhZTYxNzFlMmQ3O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzJhYzkyMWItYTg5ZC00NTBkLTg0MzYtZTBjMDg5Y2MyZWI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -831,7 +880,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:01:01 GMT + - Tue, 18 Oct 2022 19:23:23 GMT expires: - '-1' pragma: @@ -864,23 +913,23 @@ interactions: - -n -g --sku --location --mintls --mi-system-assigned --mi-user-assigned --role --scopes User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UT9Q=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8dtU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2115' + - '2143' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:01:02 GMT + - Tue, 18 Oct 2022 19:23:23 GMT expires: - '-1' pragma: @@ -913,8 +962,8 @@ interactions: - -n -g --sku --location --mintls --mi-system-assigned --mi-user-assigned --role --scopes User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.41.0 accept-language: - en-US method: GET @@ -931,7 +980,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:01:02 GMT + - Tue, 18 Oct 2022 19:23:24 GMT expires: - '-1' pragma: @@ -951,7 +1000,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe", - "principalId": "74849725-aea1-49ec-9a5b-8247db57e67a"}}' + "principalId": "52504cee-bb5f-4205-8439-cc8c257fb4e5"}}' headers: Accept: - application/json @@ -969,15 +1018,15 @@ interactions: - -n -g --sku --location --mintls --mi-system-assigned --mi-user-assigned --role --scopes User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.41.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"74849725-aea1-49ec-9a5b-8247db57e67a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T10:01:04.2154483Z","updatedOn":"2022-08-31T10:01:04.7155443Z","createdBy":null,"updatedBy":"0581142e-ae8f-4bc0-9a0d-ffb7cbad05b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe","principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T19:23:25.3986590Z","updatedOn":"2022-10-18T19:23:25.8049146Z","createdBy":null,"updatedBy":"0417ddc2-87dc-4923-8865-84f5bd13acce","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}' headers: cache-control: - no-cache @@ -986,7 +1035,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:01:09 GMT + - Tue, 18 Oct 2022 19:23:27 GMT expires: - '-1' pragma: @@ -998,7 +1047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -1016,40 +1065,175 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHOpcjE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHOojvI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/+1lI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4h44=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UT9Q=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHOqUB4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHOoj5Y=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHOolcI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8dtU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4290' + - '178600' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:01:12 GMT + - Tue, 18 Oct 2022 19:23: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 + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -1067,40 +1251,175 @@ interactions: ParameterSetName: - -n --fsa --fsi --fcs --fc --fnld User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHOpcjE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UT9Q=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHOojvI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/+1lI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4h44=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHOqUB4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHOoj5Y=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHOolcI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8dtU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4290' + - '178600' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:02:15 GMT + - Tue, 18 Oct 2022 19:24:43 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -1118,51 +1437,187 @@ interactions: ParameterSetName: - -n --fsa --fsi --fcs --fc --fnld User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHOpcjE=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UT9Q=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHOojvI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/+1lI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4h44=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHOqUB4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHOoj5Y=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHOolcI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8dtU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4290' + - '178600' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:02:17 GMT + - Tue, 18 Oct 2022 19:24:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/UT9Q=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8dtU=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "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": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/", + [], "cosmosDBSqlCollections": []}, "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==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": @@ -1181,29 +1636,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1672' + - '1702' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/UT9Q=''}' + - '{''IF-MATCH'': ''AAAADHO8dtU=''}' ParameterSetName: - -n --fsa --fsi --fcs --fc --fnld User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UT9Q=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8dtU=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOWQ3ZjBmMTEtOTU0OC00YTMxLTg5NGEtMTIzMGFhYTRjMWY3O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYTE0YjM0NjItOTMyZS00YWEwLWIxOTItOThhOTFjZjkzYjAzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -1211,7 +1666,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:02:24 GMT + - Tue, 18 Oct 2022 19:24:56 GMT expires: - '-1' pragma: @@ -1223,7 +1678,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 201 message: Created @@ -1241,9 +1696,55 @@ interactions: ParameterSetName: - -n --fsa --fsi --fcs --fc --fnld User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYTE0YjM0NjItOTMyZS00YWEwLWIxOTItOThhOTFjZjkzYjAzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:24:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n --fsa --fsi --fcs --fc --fnld + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOWQ3ZjBmMTEtOTU0OC00YTMxLTg5NGEtMTIzMGFhYTRjMWY3O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYTE0YjM0NjItOTMyZS00YWEwLWIxOTItOThhOTFjZjkzYjAzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1255,7 +1756,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:02:56 GMT + - Tue, 18 Oct 2022 19:25:27 GMT expires: - '-1' pragma: @@ -1287,23 +1788,23 @@ interactions: ParameterSetName: - -n --fsa --fsi --fcs --fc --fnld User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UV80=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8e7E=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2508' + - '2536' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:02:57 GMT + - Tue, 18 Oct 2022 19:25:28 GMT expires: - '-1' pragma: @@ -1335,7 +1836,7 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -1347,7 +1848,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:02:58 GMT + - Tue, 18 Oct 2022 19:25:28 GMT expires: - '-1' pragma: @@ -1377,9 +1878,9 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -1392,7 +1893,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:02:59 GMT + - Tue, 18 Oct 2022 19:25:28 GMT expires: - '-1' pragma: @@ -1426,23 +1927,23 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UV80=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8e7E=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2508' + - '2536' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:03:01 GMT + - Tue, 18 Oct 2022 19:25:29 GMT expires: - '-1' pragma: @@ -1461,13 +1962,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/UV80=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8e7E=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "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": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [], "cosmosDBSqlCollections": []}, "routes": [], "fallbackRoute": {"name": "$fallback", + "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], + "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", + "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "keyBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": false, "cloudToDevice": @@ -1486,29 +1988,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1643' + - '1673' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/UV80=''}' + - '{''IF-MATCH'': ''AAAADHO8e7E=''}' ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UV80=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8e7E=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYTMwM2Q2MzEtNTMwNy00NzAxLWE2Y2QtYmZlOTFlNDMyNjNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjg0MDE5MzktYjM5MC00NDU3LWI2M2EtM2M5ZjM1OTlhZDk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -1516,7 +2018,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:03:12 GMT + - Tue, 18 Oct 2022 19:25:33 GMT expires: - '-1' pragma: @@ -1546,9 +2048,55 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjg0MDE5MzktYjM5MC00NDU3LWI2M2EtM2M5ZjM1OTlhZDk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:25:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n -g --fsa + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYTMwM2Q2MzEtNTMwNy00NzAxLWE2Y2QtYmZlOTFlNDMyNjNiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjg0MDE5MzktYjM5MC00NDU3LWI2M2EtM2M5ZjM1OTlhZDk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1560,7 +2108,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:03:43 GMT + - Tue, 18 Oct 2022 19:26:04 GMT expires: - '-1' pragma: @@ -1592,23 +2140,23 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UWp8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8fKs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2503' + - '2531' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:03:44 GMT + - Tue, 18 Oct 2022 19:26:04 GMT expires: - '-1' pragma: @@ -1640,7 +2188,7 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -1652,7 +2200,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:03:44 GMT + - Tue, 18 Oct 2022 19:26:04 GMT expires: - '-1' pragma: @@ -1682,9 +2230,9 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -1697,7 +2245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:03:47 GMT + - Tue, 18 Oct 2022 19:26:05 GMT expires: - '-1' pragma: @@ -1731,23 +2279,23 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UWp8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8fKs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2503' + - '2531' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:03:49 GMT + - Tue, 18 Oct 2022 19:26:06 GMT expires: - '-1' pragma: @@ -1779,7 +2327,7 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -1791,7 +2339,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:03:49 GMT + - Tue, 18 Oct 2022 19:26:06 GMT expires: - '-1' pragma: @@ -1821,9 +2369,9 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -1836,7 +2384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:03:51 GMT + - Tue, 18 Oct 2022 19:26:07 GMT expires: - '-1' pragma: @@ -1870,23 +2418,23 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UWp8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8fKs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2503' + - '2531' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:03:53 GMT + - Tue, 18 Oct 2022 19:26:08 GMT expires: - '-1' pragma: @@ -1918,7 +2466,7 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -1930,7 +2478,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:03:54 GMT + - Tue, 18 Oct 2022 19:26:08 GMT expires: - '-1' pragma: @@ -1960,9 +2508,9 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -1975,7 +2523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:03:56 GMT + - Tue, 18 Oct 2022 19:26:08 GMT expires: - '-1' pragma: @@ -2009,23 +2557,23 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UWp8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8fKs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2503' + - '2531' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:03:58 GMT + - Tue, 18 Oct 2022 19:26:09 GMT expires: - '-1' pragma: @@ -2044,13 +2592,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/UWp8=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8fKs=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "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": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [], "cosmosDBSqlCollections": []}, "routes": [], "fallbackRoute": {"name": "$fallback", + "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], + "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", + "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": @@ -2069,29 +2618,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1648' + - '1678' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/UWp8=''}' + - '{''IF-MATCH'': ''AAAADHO8fKs=''}' ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UWp8=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8fKs=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjBkNjIyZjYtYzY5Ni00ZmZmLWJjYjEtYWU3YzVhY2ExMTg4O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWFmZmMyOWYtNGFiZC00Y2M1LWFlZmEtZTc2M2NmYzJjYWY0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -2099,7 +2648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:04:08 GMT + - Tue, 18 Oct 2022 19:26:14 GMT expires: - '-1' pragma: @@ -2129,9 +2678,55 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWFmZmMyOWYtNGFiZC00Y2M1LWFlZmEtZTc2M2NmYzJjYWY0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:26: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n -g --fsa + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjBkNjIyZjYtYzY5Ni00ZmZmLWJjYjEtYWU3YzVhY2ExMTg4O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWFmZmMyOWYtNGFiZC00Y2M1LWFlZmEtZTc2M2NmYzJjYWY0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2143,7 +2738,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:04:38 GMT + - Tue, 18 Oct 2022 19:26:45 GMT expires: - '-1' pragma: @@ -2175,23 +2770,23 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UXgk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8fhw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2508' + - '2536' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:04:39 GMT + - Tue, 18 Oct 2022 19:26:45 GMT expires: - '-1' pragma: @@ -2223,12 +2818,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-08-31T09:57:04Z"},"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":"2022-10-18T19:20:18Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -2237,7 +2832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:04:40 GMT + - Tue, 18 Oct 2022 19:26:45 GMT expires: - '-1' pragma: @@ -2270,13 +2865,13 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009?api-version=2022-01-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009","name":"ehNamespaceiothubfortest1000009","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest1xgbxylq","createdAt":"2022-08-31T10:04:47.863Z","updatedAt":"2022-08-31T10:04:47.863Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000009.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1n5jaowd","createdAt":"2022-10-18T19:26:48.493Z","updatedAt":"2022-10-18T19:26:48.493Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000009.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache @@ -2285,7 +2880,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:04:49 GMT + - Tue, 18 Oct 2022 19:26:48 GMT expires: - '-1' pragma: @@ -2322,13 +2917,13 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009?api-version=2022-01-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009","name":"ehNamespaceiothubfortest1000009","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest1xgbxylq","createdAt":"2022-08-31T10:04:47.863Z","updatedAt":"2022-08-31T10:04:47.863Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000009.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1n5jaowd","createdAt":"2022-10-18T19:26:48.493Z","updatedAt":"2022-10-18T19:26:48.493Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000009.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache @@ -2337,7 +2932,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:05:20 GMT + - Tue, 18 Oct 2022 19:26:48 GMT expires: - '-1' pragma: @@ -2372,22 +2967,22 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009?api-version=2022-01-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009","name":"ehNamespaceiothubfortest1000009","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest1xgbxylq","createdAt":"2022-08-31T10:04:47.863Z","updatedAt":"2022-08-31T10:05:35.723Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000009.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1n5jaowd","createdAt":"2022-10-18T19:26:48.493Z","updatedAt":"2022-10-18T19:26:48.493Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000009.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '832' + - '834' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:05:51 GMT + - Tue, 18 Oct 2022 19:27:19 GMT expires: - '-1' pragma: @@ -2412,7 +3007,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2422,13 +3017,13 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009?api-version=2022-01-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009","name":"ehNamespaceiothubfortest1000009","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest1xgbxylq","createdAt":"2022-08-31T10:04:47.863Z","updatedAt":"2022-08-31T10:05:35.723Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000009.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1n5jaowd","createdAt":"2022-10-18T19:26:48.493Z","updatedAt":"2022-10-18T19:27:39.467Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000009.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache @@ -2437,7 +3032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:05:52 GMT + - Tue, 18 Oct 2022 19:27:49 GMT expires: - '-1' pragma: @@ -2459,38 +3054,88 @@ interactions: code: 200 message: OK - request: - body: '{}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - eventhubs eventhub create + - eventhubs namespace create Connection: - keep-alive - Content-Length: + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009?api-version=2022-01-01-preview + response: + body: + string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009","name":"ehNamespaceiothubfortest1000009","type":"Microsoft.EventHub/Namespaces","location":"West + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1n5jaowd","createdAt":"2022-10-18T19:26:48.493Z","updatedAt":"2022-10-18T19:27:39.467Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000009.servicebus.windows.net:443/","status":"Active"}}' + headers: + cache-control: + - no-cache + content-length: + - '832' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:27:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Service-Bus-Resource-Provider/SN1 + - Microsoft-HTTPAPI/2.0 + server-sb: + - Service-Bus-Resource-Provider/SN1 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - eventhubs eventhub create + Connection: + - keep-alive + Content-Length: - '2' Content-Type: - application/json ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010","name":"eventHubiothubfortest000010","type":"Microsoft.EventHub/Namespaces/EventHubs","location":"westus2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2022-08-31T10:05:55.78Z","updatedAt":"2022-08-31T10:05:56.03Z","partitionIds":["0","1","2","3"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010","name":"eventHubiothubfortest000010","type":"Microsoft.EventHub/namespaces/eventhubs","location":"westus2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2022-10-18T19:27:52.047Z","updatedAt":"2022-10-18T19:27:52.38Z","partitionIds":["0","1","2","3"]}}' headers: cache-control: - no-cache content-length: - - '497' + - '498' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:05:55 GMT + - Tue, 18 Oct 2022 19:27:51 GMT expires: - '-1' pragma: @@ -2499,10 +3144,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-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2520,9 +3169,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2774849725-aea1-49ec-9a5b-8247db57e67a%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2752504cee-bb5f-4205-8439-cc8c257fb4e5%27%29 response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' @@ -2534,11 +3183,11 @@ interactions: content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 31 Aug 2022 10:05:57 GMT + - Tue, 18 Oct 2022 19:27:53 GMT odata-version: - '4.0' request-id: - - 109c0200-9353-4dcb-9f94-c74c1a457b4e + - b169b7d2-a39c-4150-b518-723563daadea strict-transport-security: - max-age=31536000 transfer-encoding: @@ -2546,14 +3195,14 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00001A47"}}' + - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"001","RoleInstance":"MW2PEPF00008D4D"}}' x-ms-resource-unit: - '1' status: code: 200 message: OK - request: - body: '{"ids": ["74849725-aea1-49ec-9a5b-8247db57e67a"], "types": ["user", "group", + body: '{"ids": ["52504cee-bb5f-4205-8439-cc8c257fb4e5"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -2571,28 +3220,27 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: POST uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"74849725-aea1-49ec-9a5b-8247db57e67a","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003"],"appDisplayName":null,"appDescription":null,"appId":"feeb8809-7706-4fdc-876a-5cc59b8d5a90","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-08-31T09:58:24Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"identitytesthub000003","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["feeb8809-7706-4fdc-876a-5cc59b8d5a90","https://identity.azure.net/lMNkhKdj3H/59AxGmNcTp+sqjl4tYRKEkknJTYv07h0="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"8C3FFA3D60825E071BE9E8574FC216CA4ED3A143","displayName":"CN=feeb8809-7706-4fdc-876a-5cc59b8d5a90, - DC=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","endDateTime":"2022-11-29T09:53:00Z","key":null,"keyId":"33aee901-e214-4636-ba0c-1ea98a84c88f","startDateTime":"2022-08-31T09:53:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"52504cee-bb5f-4205-8439-cc8c257fb4e5","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003"],"appDisplayName":null,"appDescription":null,"appId":"510b32bd-68d8-4ce7-89a1-fc453c24aada","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-10-18T19:20:48Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"identitytesthub000003","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["510b32bd-68d8-4ce7-89a1-fc453c24aada","https://identity.azure.net/6N6t9Kl9g38CGXp6qjqLJeNxkHG36/w/eUJga1An3TI="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"2CC5C9C4F5CEEF1D2F8B384D715D283D71F9040D","displayName":"CN=510b32bd-68d8-4ce7-89a1-fc453c24aada","endDateTime":"2023-01-16T19:15:00Z","key":null,"keyId":"8ea7e31c-cef6-4400-8abb-ed5e87a23ef7","startDateTime":"2022-10-18T19:15:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '1772' + - '1731' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 31 Aug 2022 10:05:57 GMT + - Tue, 18 Oct 2022 19:27:52 GMT location: - https://graph.microsoft.com odata-version: - '4.0' request-id: - - cdb6bc5e-11bd-429b-a11c-1ea312b827f0 + - 1131093b-0832-4259-8332-b5c4b1f59d0c strict-transport-security: - max-age=31536000 transfer-encoding: @@ -2600,7 +3248,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00009A53"}}' + - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"001","RoleInstance":"MW2PEPF0000B0A2"}}' x-ms-resource-unit: - '3' status: @@ -2620,8 +3268,8 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.41.0 accept-language: - en-US method: GET @@ -2638,7 +3286,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:05:57 GMT + - Tue, 18 Oct 2022 19:27:53 GMT expires: - '-1' pragma: @@ -2658,7 +3306,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975", - "principalId": "74849725-aea1-49ec-9a5b-8247db57e67a", "principalType": "ServicePrincipal"}}' + "principalId": "52504cee-bb5f-4205-8439-cc8c257fb4e5", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -2677,15 +3325,15 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.41.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975","principalId":"74849725-aea1-49ec-9a5b-8247db57e67a","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T10:05:58.8982363Z","updatedOn":"2022-08-31T10:05:59.3982421Z","createdBy":null,"updatedBy":"0581142e-ae8f-4bc0-9a0d-ffb7cbad05b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975","principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T19:27:54.4247388Z","updatedOn":"2022-10-18T19:27:54.8154321Z","createdBy":null,"updatedBy":"0417ddc2-87dc-4923-8865-84f5bd13acce","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}' headers: cache-control: - no-cache @@ -2694,7 +3342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:06:02 GMT + - Tue, 18 Oct 2022 19:27:57 GMT expires: - '-1' pragma: @@ -2724,12 +3372,12 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-msi/6.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006?api-version=2022-01-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006","name":"iot-user-identity000006","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97","clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006","name":"iot-user-identity000006","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50","clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7"}}' headers: cache-control: - no-cache @@ -2738,7 +3386,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:06:02 GMT + - Tue, 18 Oct 2022 19:27:56 GMT expires: - '-1' pragma: @@ -2768,9 +3416,9 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27adb37461-6dac-44a3-a769-b66d0cff7f97%27%29 + uri: https://graph.microsoft.com/v1.0/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27d89db706-a930-43f0-b2b2-bd3e1fcc8e50%27%29 response: body: string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#servicePrincipals","value":[]}' @@ -2782,11 +3430,11 @@ interactions: content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 31 Aug 2022 10:06:03 GMT + - Tue, 18 Oct 2022 19:27:56 GMT odata-version: - '4.0' request-id: - - 24dc9fa8-f37d-4ddb-bf0f-9ba53589aa0d + - 2fdc9211-6c3a-42c2-9402-4e765e10a3be strict-transport-security: - max-age=31536000 transfer-encoding: @@ -2794,14 +3442,14 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00009A52"}}' + - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"001","RoleInstance":"MW2PEPF0000A16F"}}' x-ms-resource-unit: - '1' status: code: 200 message: OK - request: - body: '{"ids": ["adb37461-6dac-44a3-a769-b66d0cff7f97"], "types": ["user", "group", + body: '{"ids": ["d89db706-a930-43f0-b2b2-bd3e1fcc8e50"], "types": ["user", "group", "servicePrincipal", "directoryObjectPartnerReference"]}' headers: Accept: @@ -2819,28 +3467,27 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: POST uri: https://graph.microsoft.com/v1.0/directoryObjects/getByIds response: body: - string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"adb37461-6dac-44a3-a769-b66d0cff7f97","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006"],"appDisplayName":null,"appDescription":null,"appId":"213ef35c-6104-498b-9a62-b23d9126f6cd","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-08-31T09:58:00Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"iot-user-identity000006","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["213ef35c-6104-498b-9a62-b23d9126f6cd","https://identity.azure.net/8qj7bYpmgDfvkJhqgTvIslvuvUQGFrnuRC7ufa57fO4="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"DA85B6450E2C20718ACFEEDD590176A6B30E02FE","displayName":"CN=213ef35c-6104-498b-9a62-b23d9126f6cd, - DC=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","endDateTime":"2022-11-29T09:53:00Z","key":null,"keyId":"36d27061-494e-4582-af82-2c6ad69febcf","startDateTime":"2022-08-31T09:53:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' + string: '{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#directoryObjects","value":[{"@odata.type":"#microsoft.graph.servicePrincipal","id":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50","deletedDateTime":null,"accountEnabled":true,"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006"],"appDisplayName":null,"appDescription":null,"appId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","applicationTemplateId":null,"appOwnerOrganizationId":null,"appRoleAssignmentRequired":false,"createdDateTime":"2022-10-18T19:20:44Z","description":null,"disabledByMicrosoftStatus":null,"displayName":"iot-user-identity000006","homepage":null,"loginUrl":null,"logoutUrl":null,"notes":null,"notificationEmailAddresses":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyThumbprint":null,"replyUrls":[],"servicePrincipalNames":["55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","https://identity.azure.net/zBrwfKFf/mwiKuex4CVqC4BiaV6HpKlK6FKA7En9K5c="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null,"info":null,"samlSingleSignOnSettings":null,"addIns":[],"appRoles":[],"keyCredentials":[{"customKeyIdentifier":"B3769A434A732499695FDBCD02726E4D1CB1DE4E","displayName":"CN=55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","endDateTime":"2023-01-16T19:15:00Z","key":null,"keyId":"1a4f15ee-2e74-444c-abe4-02c392b7c659","startDateTime":"2022-10-18T19:15:00Z","type":"AsymmetricX509Cert","usage":"Verify"}],"oauth2PermissionScopes":[],"passwordCredentials":[],"resourceSpecificApplicationPermissions":[],"verifiedPublisher":{"displayName":null,"verifiedPublisherId":null,"addedDateTime":null}}]}' headers: cache-control: - no-cache content-length: - - '1798' + - '1757' content-type: - application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8 date: - - Wed, 31 Aug 2022 10:06:04 GMT + - Tue, 18 Oct 2022 19:27:57 GMT location: - https://graph.microsoft.com odata-version: - '4.0' request-id: - - 31ab5a59-e9d8-483f-8159-51973dad44f1 + - 2ab50986-9513-4d7d-b1bb-a255dc736e0d strict-transport-security: - max-age=31536000 transfer-encoding: @@ -2848,7 +3495,7 @@ interactions: vary: - Accept-Encoding x-ms-ags-diagnostic: - - '{"ServerInfo":{"DataCenter":"Southeast Asia","Slice":"E","Ring":"5","ScaleUnit":"000","RoleInstance":"SI1PEPF00005D69"}}' + - '{"ServerInfo":{"DataCenter":"West US 2","Slice":"E","Ring":"1","ScaleUnit":"001","RoleInstance":"MW2PEPF000095FD"}}' x-ms-resource-unit: - '3' status: @@ -2868,8 +3515,8 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.41.0 accept-language: - en-US method: GET @@ -2886,7 +3533,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:06:05 GMT + - Tue, 18 Oct 2022 19:27:58 GMT expires: - '-1' pragma: @@ -2906,7 +3553,7 @@ interactions: message: OK - request: body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975", - "principalId": "adb37461-6dac-44a3-a769-b66d0cff7f97", "principalType": "ServicePrincipal"}}' + "principalId": "d89db706-a930-43f0-b2b2-bd3e1fcc8e50", "principalType": "ServicePrincipal"}}' headers: Accept: - application/json @@ -2925,15 +3572,15 @@ interactions: ParameterSetName: - --role --assignee --scope User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) msrest/0.7.0 msrest_azure/0.6.4 - azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) msrest/0.7.1 msrest_azure/0.6.4 azure-mgmt-authorization/0.61.0 + Azure-SDK-For-Python AZURECLI/2.41.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003?api-version=2020-04-01-preview response: body: - string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010","condition":null,"conditionVersion":null,"createdOn":"2022-08-31T10:06:06.3410581Z","updatedOn":"2022-08-31T10:06:07.7004541Z","createdBy":null,"updatedBy":"0581142e-ae8f-4bc0-9a0d-ffb7cbad05b2","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' + string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/2b629674-e913-4c01-ae53-ef4638d8f975","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010","condition":null,"conditionVersion":null,"createdOn":"2022-10-18T19:27:58.6904583Z","updatedOn":"2022-10-18T19:27:59.0967305Z","createdBy":null,"updatedBy":"0417ddc2-87dc-4923-8865-84f5bd13acce","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000009/eventhubs/eventHubiothubfortest000010/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000003","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000003"}' headers: cache-control: - no-cache @@ -2942,7 +3589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:06:10 GMT + - Tue, 18 Oct 2022 19:28:01 GMT expires: - '-1' pragma: @@ -2972,7 +3619,7 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -2984,7 +3631,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:06:42 GMT + - Tue, 18 Oct 2022 19:28:30 GMT expires: - '-1' pragma: @@ -3014,9 +3661,9 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -3029,7 +3676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:06:43 GMT + - Tue, 18 Oct 2022 19:28:31 GMT expires: - '-1' pragma: @@ -3063,23 +3710,23 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UXgk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8fhw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2508' + - '2536' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:06:45 GMT + - Tue, 18 Oct 2022 19:28:32 GMT expires: - '-1' pragma: @@ -3098,16 +3745,16 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/UXgk=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8fhw=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 1, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"endpointUri": "sb://ehNamespaceiothubfortest1000009.servicebus.windows.net", "entityPath": "eventHubiothubfortest000010", "authenticationType": "identityBased", "name": - "EHSystemIdentityEndpoint000004", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": []}, "routes": [], - "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + "EHSystemIdentityEndpoint000004", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", @@ -3127,29 +3774,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1947' + - '1977' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/UXgk=''}' + - '{''IF-MATCH'': ''AAAADHO8fhw=''}' ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UXgk=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"42dc5851-77bb-4697-9bf7-20e38b32de4c","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8fhw=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"dc192f49-5512-4568-be23-62c80462686e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmYzMTM1NGUtZTQ3YS00YzFmLTg5N2EtZjA5Y2I2MTBmZWZkO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDg1MGRlYjgtMzAzMS00Mzg4LTkzOGQtNjZiM2IwYTI5NDI4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -3157,7 +3804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:06:57 GMT + - Tue, 18 Oct 2022 19:28:37 GMT expires: - '-1' pragma: @@ -3169,7 +3816,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4997' status: code: 201 message: Created @@ -3187,9 +3834,55 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDg1MGRlYjgtMzAzMS00Mzg4LTkzOGQtNjZiM2IwYTI5NDI4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:28:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub routing-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmYzMTM1NGUtZTQ3YS00YzFmLTg5N2EtZjA5Y2I2MTBmZWZkO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDg1MGRlYjgtMzAzMS00Mzg4LTkzOGQtNjZiM2IwYTI5NDI4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3201,7 +3894,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:07:27 GMT + - Tue, 18 Oct 2022 19:29:07 GMT expires: - '-1' pragma: @@ -3233,23 +3926,23 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --endpoint-uri --entity-path User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UZt4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"42dc5851-77bb-4697-9bf7-20e38b32de4c","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8hGg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"dc192f49-5512-4568-be23-62c80462686e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2840' + - '2868' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:07:28 GMT + - Tue, 18 Oct 2022 19:29:08 GMT expires: - '-1' pragma: @@ -3281,7 +3974,7 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --identity --endpoint-uri --entity-path User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -3293,7 +3986,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:07:29 GMT + - Tue, 18 Oct 2022 19:29:08 GMT expires: - '-1' pragma: @@ -3323,9 +4016,9 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --identity --endpoint-uri --entity-path User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -3338,7 +4031,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:07:30 GMT + - Tue, 18 Oct 2022 19:29:09 GMT expires: - '-1' pragma: @@ -3354,7 +4047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -3372,23 +4065,23 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --identity --endpoint-uri --entity-path User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UZt4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"42dc5851-77bb-4697-9bf7-20e38b32de4c","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8hGg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"dc192f49-5512-4568-be23-62c80462686e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2840' + - '2868' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:07:32 GMT + - Tue, 18 Oct 2022 19:29:10 GMT expires: - '-1' pragma: @@ -3407,20 +4100,20 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/UZt4=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8hGg=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 1, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "42dc5851-77bb-4697-9bf7-20e38b32de4c", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "dc192f49-5512-4568-be23-62c80462686e", "endpointUri": "sb://ehNamespaceiothubfortest1000009.servicebus.windows.net", "entityPath": "eventHubiothubfortest000010", "authenticationType": "identityBased", - "name": "EHSystemIdentityEndpoint000004", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "name": "EHSystemIdentityEndpoint000004", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001"}, {"endpointUri": "sb://ehNamespaceiothubfortest1000009.servicebus.windows.net", "entityPath": "eventHubiothubfortest000010", "authenticationType": "identityBased", "identity": {"userAssignedIdentity": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006"}, - "name": "EHUserIdentityEndpoint000005", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": []}, "routes": [], - "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + "name": "EHUserIdentityEndpoint000005", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", @@ -3440,29 +4133,29 @@ interactions: Connection: - keep-alive Content-Length: - - '2500' + - '2530' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/UZt4=''}' + - '{''IF-MATCH'': ''AAAADHO8hGg=''}' ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --identity --endpoint-uri --entity-path User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UZt4=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"42dc5851-77bb-4697-9bf7-20e38b32de4c","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"},{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006"},"name":"EHUserIdentityEndpoint000005","id":"1c2da919-42cc-4b53-bd09-3a170adca5ac","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8hGg=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"dc192f49-5512-4568-be23-62c80462686e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"},{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006"},"name":"EHUserIdentityEndpoint000005","id":"db95b63f-7ee4-4e4b-8455-44c6b2f1be42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDAzMDliY2MtZTUzMy00MThkLWEwNGQtNjdlMGM1NDMxMGJmO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGQ5OGU3OWQtMTVhOS00YmQ1LWJmYWMtMzVhM2E0NzVmNTYwO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -3470,7 +4163,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:07:42 GMT + - Tue, 18 Oct 2022 19:29:15 GMT expires: - '-1' pragma: @@ -3500,9 +4193,55 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --identity --endpoint-uri --entity-path User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGQ5OGU3OWQtMTVhOS00YmQ1LWJmYWMtMzVhM2E0NzVmNTYwO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:29:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub routing-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n -t -r -s --auth-type --identity --endpoint-uri --entity-path + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDAzMDliY2MtZTUzMy00MThkLWEwNGQtNjdlMGM1NDMxMGJmO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGQ5OGU3OWQtMTVhOS00YmQ1LWJmYWMtMzVhM2E0NzVmNTYwO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3514,7 +4253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:08:12 GMT + - Tue, 18 Oct 2022 19:29:45 GMT expires: - '-1' pragma: @@ -3546,23 +4285,23 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s --auth-type --identity --endpoint-uri --entity-path User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UaM4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"42dc5851-77bb-4697-9bf7-20e38b32de4c","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"},{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006"},"name":"EHUserIdentityEndpoint000005","id":"1c2da919-42cc-4b53-bd09-3a170adca5ac","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8hnw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"dc192f49-5512-4568-be23-62c80462686e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"},{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006"},"name":"EHUserIdentityEndpoint000005","id":"db95b63f-7ee4-4e4b-8455-44c6b2f1be42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '3376' + - '3404' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:08:13 GMT + - Tue, 18 Oct 2022 19:29:46 GMT expires: - '-1' pragma: @@ -3594,7 +4333,7 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -3606,7 +4345,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:08:15 GMT + - Tue, 18 Oct 2022 19:29:47 GMT expires: - '-1' pragma: @@ -3636,9 +4375,9 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -3651,7 +4390,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:08:16 GMT + - Tue, 18 Oct 2022 19:29:47 GMT expires: - '-1' pragma: @@ -3685,23 +4424,23 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UaM4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"42dc5851-77bb-4697-9bf7-20e38b32de4c","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"},{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006"},"name":"EHUserIdentityEndpoint000005","id":"1c2da919-42cc-4b53-bd09-3a170adca5ac","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8hnw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"dc192f49-5512-4568-be23-62c80462686e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"},{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006"},"name":"EHUserIdentityEndpoint000005","id":"db95b63f-7ee4-4e4b-8455-44c6b2f1be42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '3376' + - '3404' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:08:18 GMT + - Tue, 18 Oct 2022 19:29:48 GMT expires: - '-1' pragma: @@ -3720,16 +4459,16 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/UaM4=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8hnw=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 1, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "42dc5851-77bb-4697-9bf7-20e38b32de4c", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "dc192f49-5512-4568-be23-62c80462686e", "endpointUri": "sb://ehNamespaceiothubfortest1000009.servicebus.windows.net", "entityPath": "eventHubiothubfortest000010", "authenticationType": "identityBased", - "name": "EHSystemIdentityEndpoint000004", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": []}, "routes": [], - "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + "name": "EHSystemIdentityEndpoint000004", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", @@ -3749,29 +4488,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1993' + - '2023' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/UaM4=''}' + - '{''IF-MATCH'': ''AAAADHO8hnw=''}' ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UaM4=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"42dc5851-77bb-4697-9bf7-20e38b32de4c","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8hnw=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"dc192f49-5512-4568-be23-62c80462686e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDNkMmM2ZmUtMmVmNS00Nzg1LTgzMTAtMzJjYjg2MjZkODY1O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzk5N2IyODEtMDJiNy00NWJkLTlhMjYtOTgwMzAyODEyYzYyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -3779,7 +4518,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:08:28 GMT + - Tue, 18 Oct 2022 19:29:51 GMT expires: - '-1' pragma: @@ -3809,9 +4548,55 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzk5N2IyODEtMDJiNy00NWJkLTlhMjYtOTgwMzAyODEyYzYyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:29:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub routing-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDNkMmM2ZmUtMmVmNS00Nzg1LTgzMTAtMzJjYjg2MjZkODY1O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzk5N2IyODEtMDJiNy00NWJkLTlhMjYtOTgwMzAyODEyYzYyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3823,7 +4608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:08:58 GMT + - Tue, 18 Oct 2022 19:30:22 GMT expires: - '-1' pragma: @@ -3855,23 +4640,23 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UauI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"42dc5851-77bb-4697-9bf7-20e38b32de4c","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8iRU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"dc192f49-5512-4568-be23-62c80462686e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2840' + - '2868' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:08:59 GMT + - Tue, 18 Oct 2022 19:30:23 GMT expires: - '-1' pragma: @@ -3903,7 +4688,7 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -3915,7 +4700,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:09:01 GMT + - Tue, 18 Oct 2022 19:30:23 GMT expires: - '-1' pragma: @@ -3945,9 +4730,9 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -3960,7 +4745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:09:01 GMT + - Tue, 18 Oct 2022 19:30:24 GMT expires: - '-1' pragma: @@ -3976,7 +4761,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -3994,23 +4779,23 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UauI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"42dc5851-77bb-4697-9bf7-20e38b32de4c","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8iRU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://ehNamespaceiothubfortest1000009.servicebus.windows.net","entityPath":"eventHubiothubfortest000010","authenticationType":"identityBased","name":"EHSystemIdentityEndpoint000004","id":"dc192f49-5512-4568-be23-62c80462686e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2840' + - '2868' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:09:02 GMT + - Tue, 18 Oct 2022 19:30:25 GMT expires: - '-1' pragma: @@ -4029,13 +4814,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/UauI=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8iRU=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "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": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [], "cosmosDBSqlCollections": []}, "routes": [], "fallbackRoute": {"name": "$fallback", + "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], + "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", + "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": @@ -4054,29 +4840,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1648' + - '1678' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/UauI=''}' + - '{''IF-MATCH'': ''AAAADHO8iRU=''}' ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UauI=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8iRU=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2MxNWQxYTMtZGE3MS00ZDMwLThlZjItNzNjYWE4OWNhOTk0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMWY5MzRiNGItODdiNS00YzNmLTk5N2UtMDcyMDk5ODdkYzVjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -4084,7 +4870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:09:11 GMT + - Tue, 18 Oct 2022 19:30:29 GMT expires: - '-1' pragma: @@ -4114,9 +4900,55 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMWY5MzRiNGItODdiNS00YzNmLTk5N2UtMDcyMDk5ODdkYzVjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:30:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub routing-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2MxNWQxYTMtZGE3MS00ZDMwLThlZjItNzNjYWE4OWNhOTk0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMWY5MzRiNGItODdiNS00YzNmLTk5N2UtMDcyMDk5ODdkYzVjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -4128,7 +4960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:09:42 GMT + - Tue, 18 Oct 2022 19:30:59 GMT expires: - '-1' pragma: @@ -4160,23 +4992,23 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UbJM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8jJQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2508' + - '2536' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:09:43 GMT + - Tue, 18 Oct 2022 19:31:00 GMT expires: - '-1' pragma: @@ -4215,21 +5047,21 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/test-iot-vnet?api-version=2022-01-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/\\\"8863a128-0cf7-4d7c-bfd6-66b647d7b73c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"be6ad4f8-5bbc-4bdf-bcd9-460179564fad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"d0fd31a4-2197-4040-a816-afc21a49ed0e\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"7512c4b2-5839-41c3-a04b-5d7de8e3b6cf\",\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/\\\"8863a128-0cf7-4d7c-bfd6-66b647d7b73c\\\"\",\r\n + \ \"etag\": \"W/\\\"be6ad4f8-5bbc-4bdf-bcd9-460179564fad\\\"\",\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\": @@ -4240,7 +5072,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7a91995d-5990-4ff1-88c8-f189fb88b73e?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e4079c1b-327e-4560-9142-4e0cbaac78ec?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -4248,7 +5080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:09:50 GMT + - Tue, 18 Oct 2022 19:31:02 GMT expires: - '-1' pragma: @@ -4261,7 +5093,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4168f76b-2e8f-4aeb-864b-8717fd1ea32b + - 33ebeb93-ea9e-414e-be22-2c1c54bd10f3 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -4281,21 +5113,21 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7a91995d-5990-4ff1-88c8-f189fb88b73e?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e4079c1b-327e-4560-9142-4e0cbaac78ec?api-version=2022-01-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '30' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:09:53 GMT + - Tue, 18 Oct 2022 19:31:02 GMT expires: - '-1' pragma: @@ -4312,7 +5144,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f8379e76-ec3a-485e-b56c-ca32f87f3585 + - 86c3b1f8-685c-4ade-986c-3be575c81b12 status: code: 200 message: OK @@ -4330,26 +5162,75 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) 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=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e4079c1b-327e-4560-9142-4e0cbaac78ec?api-version=2022-01-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/\\\"27dd4e6f-c204-499b-a8d7-f53c265d8f7a\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d0fd31a4-2197-4040-a816-afc21a49ed0e\",\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/\\\"27dd4e6f-c204-499b-a8d7-f53c265d8f7a\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:31:12 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: + - 218c285d-e6a8-46bd-be89-657288e573c9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --subnet-name + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + 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=2022-01-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/\\\"c78a097f-27c5-4fec-b849-630a3ffd9577\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"7512c4b2-5839-41c3-a04b-5d7de8e3b6cf\",\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/\\\"c78a097f-27c5-4fec-b849-630a3ffd9577\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}" headers: cache-control: @@ -4359,9 +5240,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:09:53 GMT + - Tue, 18 Oct 2022 19:31:12 GMT etag: - - W/"27dd4e6f-c204-499b-a8d7-f53c265d8f7a" + - W/"c78a097f-27c5-4fec-b849-630a3ffd9577" expires: - '-1' pragma: @@ -4378,7 +5259,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4432eb65-2fd8-4cd6-a1c9-257bf0413b3f + - c49f68c3-f83f-4c5d-b514-dfd5a8116f61 status: code: 200 message: OK @@ -4396,13 +5277,13 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) 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=2022-01-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/\\\"27dd4e6f-c204-499b-a8d7-f53c265d8f7a\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"c78a097f-27c5-4fec-b849-630a3ffd9577\\\"\",\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\": @@ -4415,9 +5296,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:09:54 GMT + - Tue, 18 Oct 2022 19:31:12 GMT etag: - - W/"27dd4e6f-c204-499b-a8d7-f53c265d8f7a" + - W/"c78a097f-27c5-4fec-b849-630a3ffd9577" expires: - '-1' pragma: @@ -4434,7 +5315,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 09c437a1-8816-4d5b-b2b2-ac49194c63c2 + - 57e70669-ce44-44c1-8c8c-7b4e16e1b0cc status: code: 200 message: OK @@ -4459,20 +5340,22 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT 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=2022-01-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/\\\"6d6a4395-131f-4a27-9cfd-8daa58e15f38\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"7efff700-3f8d-469f-872e-66d36e650e1f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/03f43ec9-8b2e-404f-a6b1-200e6ddf4a6f?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/48e683e8-2c1a-4569-9e0c-3705a35c8213?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -4480,7 +5363,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:09:56 GMT + - Tue, 18 Oct 2022 19:31:13 GMT expires: - '-1' pragma: @@ -4497,9 +5380,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 05caa180-ae69-4f0d-8fab-c9454c065a57 + - 52fbd05e-20c4-4b16-a82d-490927172b00 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -4517,9 +5400,9 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/03f43ec9-8b2e-404f-a6b1-200e6ddf4a6f?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/48e683e8-2c1a-4569-9e0c-3705a35c8213?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -4531,7 +5414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:10:26 GMT + - Tue, 18 Oct 2022 19:31:13 GMT expires: - '-1' pragma: @@ -4548,7 +5431,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 67b48a48-5242-4108-95fe-769fe7becde8 + - 437bcac8-508a-486b-9031-920fde35e3f4 status: code: 200 message: OK @@ -4566,13 +5449,13 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) 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=2022-01-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/\\\"6d6a4395-131f-4a27-9cfd-8daa58e15f38\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"7efff700-3f8d-469f-872e-66d36e650e1f\\\"\",\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\": @@ -4585,9 +5468,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:10:26 GMT + - Tue, 18 Oct 2022 19:31:14 GMT etag: - - W/"6d6a4395-131f-4a27-9cfd-8daa58e15f38" + - W/"7efff700-3f8d-469f-872e-66d36e650e1f" expires: - '-1' pragma: @@ -4604,7 +5487,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f5cc877b-8aef-4707-ac72-07ebb54476f4 + - 358a8909-79fa-4959-91a8-896b5e320925 status: code: 200 message: OK @@ -4622,7 +5505,7 @@ interactions: ParameterSetName: - --type -n -g User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateLinkResources?api-version=2020-03-01 response: @@ -4636,7 +5519,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:10:28 GMT + - Tue, 18 Oct 2022 19:31:14 GMT expires: - '-1' pragma: @@ -4668,7 +5551,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -4680,7 +5563,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:10:29 GMT + - Tue, 18 Oct 2022 19:31:14 GMT expires: - '-1' pragma: @@ -4710,9 +5593,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -4725,7 +5608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:10:31 GMT + - Tue, 18 Oct 2022 19:31:15 GMT expires: - '-1' pragma: @@ -4759,23 +5642,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UbJM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8jJQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2508' + - '2536' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:10:33 GMT + - Tue, 18 Oct 2022 19:31:16 GMT expires: - '-1' pragma: @@ -4816,19 +5699,19 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint?api-version=2022-01-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/\\\"f9af5662-3763-4d78-a593-8ec21a589195\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"145c046d-9862-4f83-a49e-da4050d779da\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"2c4a8727-4ae7-45c1-9851-40464b2a3254\",\r\n \"privateLinkServiceConnections\": + \"68739689-e757-42a6-b6d9-a5bb62c7aa18\",\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/\\\"f9af5662-3763-4d78-a593-8ec21a589195\\\"\",\r\n + \ \"etag\": \"W/\\\"145c046d-9862-4f83-a49e-da4050d779da\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003\",\r\n \ \"groupIds\": [\r\n \"iotHub\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -4839,13 +5722,13 @@ interactions: \ \"customNetworkInterfaceName\": \"\",\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 \"ipConfigurations\": [],\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.22340548-6a5b-4b45-8595-4a42ed040e59\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/iot-private-endpoint.nic.a9bbbdda-8caf-4a43-b6c6-bfe6a6320bde\"\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/e39df250-2641-4665-b958-b5a346159f84?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ada9c4e6-ec8c-4d70-9f74-69084aa2c4be?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -4853,7 +5736,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:10:40 GMT + - Tue, 18 Oct 2022 19:31:18 GMT expires: - '-1' pragma: @@ -4866,9 +5749,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1fbf1ad2-71e3-4b87-b0b3-25990242ed40 + - 97e42c2a-a4c8-4e48-87d1-e3bf619b21f1 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -4887,9 +5770,9 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e39df250-2641-4665-b958-b5a346159f84?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ada9c4e6-ec8c-4d70-9f74-69084aa2c4be?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4901,7 +5784,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:10:51 GMT + - Tue, 18 Oct 2022 19:31:18 GMT expires: - '-1' pragma: @@ -4918,7 +5801,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5d952af5-e2ba-45eb-8667-355c9921626d + - fa0d1ed0-b186-4858-9ef2-eb0c29c2045a status: code: 200 message: OK @@ -4937,9 +5820,9 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e39df250-2641-4665-b958-b5a346159f84?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ada9c4e6-ec8c-4d70-9f74-69084aa2c4be?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -4951,7 +5834,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:11:01 GMT + - Tue, 18 Oct 2022 19:31:28 GMT expires: - '-1' pragma: @@ -4968,7 +5851,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 765ee02c-dd5e-4f1c-ab8f-1fcdfb52ff7d + - 7c26b1ae-ae1c-4989-8cc9-ce08a6e8adbf status: code: 200 message: OK @@ -4987,9 +5870,9 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e39df250-2641-4665-b958-b5a346159f84?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ada9c4e6-ec8c-4d70-9f74-69084aa2c4be?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -5001,7 +5884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:11:22 GMT + - Tue, 18 Oct 2022 19:31:48 GMT expires: - '-1' pragma: @@ -5018,7 +5901,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 04189e1a-d7f1-44fb-9936-53940de5a250 + - 5ecea09a-7420-4a58-9938-79c335f732c6 status: code: 200 message: OK @@ -5037,9 +5920,9 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e39df250-2641-4665-b958-b5a346159f84?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ada9c4e6-ec8c-4d70-9f74-69084aa2c4be?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -5051,7 +5934,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:11:42 GMT + - Tue, 18 Oct 2022 19:32:08 GMT expires: - '-1' pragma: @@ -5068,7 +5951,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 94aae9ac-e58a-4c85-82da-776a99fd1bf4 + - 7fb60f2a-4a81-47b0-9dc8-2a69ce44b05f status: code: 200 message: OK @@ -5087,9 +5970,59 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e39df250-2641-4665-b958-b5a346159f84?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ada9c4e6-ec8c-4d70-9f74-69084aa2c4be?api-version=2022-01-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: + - Tue, 18 Oct 2022 19:32:48 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: + - c7bb6135-0d96-4b94-977f-79bdde5c4b10 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + 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: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ada9c4e6-ec8c-4d70-9f74-69084aa2c4be?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -5101,7 +6034,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:12:22 GMT + - Tue, 18 Oct 2022 19:33:28 GMT expires: - '-1' pragma: @@ -5118,7 +6051,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0b54253b-bf9b-4c9f-82c2-1d626e155182 + - 2872dffb-ff8c-4473-9fca-87f88fd15cac status: code: 200 message: OK @@ -5137,19 +6070,19 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) 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=2022-01-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/\\\"077fa780-2403-489a-ba0e-02fa4215918d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3ba735b5-7d85-4a20-a126-3a675be20229\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"2c4a8727-4ae7-45c1-9851-40464b2a3254\",\r\n \"privateLinkServiceConnections\": + \"68739689-e757-42a6-b6d9-a5bb62c7aa18\",\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/\\\"077fa780-2403-489a-ba0e-02fa4215918d\\\"\",\r\n + \ \"etag\": \"W/\\\"3ba735b5-7d85-4a20-a126-3a675be20229\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003\",\r\n \ \"groupIds\": [\r\n \"iotHub\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -5160,11 +6093,11 @@ interactions: \ \"customNetworkInterfaceName\": \"\",\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 \"ipConfigurations\": [],\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.22340548-6a5b-4b45-8595-4a42ed040e59\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/iot-private-endpoint.nic.a9bbbdda-8caf-4a43-b6c6-bfe6a6320bde\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \"fqdn\": \"identitytesthub000003.azure-devices.net\",\r\n \"ipAddresses\": [\r\n \ \"10.0.0.4\"\r\n ]\r\n },\r\n {\r\n \"fqdn\": - \"iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net\",\r\n \"ipAddresses\": + \"iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net\",\r\n \"ipAddresses\": [\r\n \"10.0.0.5\"\r\n ]\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: @@ -5174,9 +6107,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:12:22 GMT + - Tue, 18 Oct 2022 19:33:28 GMT etag: - - W/"077fa780-2403-489a-ba0e-02fa4215918d" + - W/"3ba735b5-7d85-4a20-a126-3a675be20229" expires: - '-1' pragma: @@ -5193,7 +6126,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d1051d50-c744-40b6-b108-c351b60f77b1 + - e074106e-c7a1-44ea-9604-5262abea94a8 status: code: 200 message: OK @@ -5211,7 +6144,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -5223,7 +6156,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:12:23 GMT + - Tue, 18 Oct 2022 19:33:29 GMT expires: - '-1' pragma: @@ -5253,9 +6186,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -5268,7 +6201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:12:25 GMT + - Tue, 18 Oct 2022 19:33:29 GMT expires: - '-1' pragma: @@ -5284,7 +6217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -5302,23 +6235,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UcmM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8lqc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '3211' + - '3239' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:12:27 GMT + - Tue, 18 Oct 2022 19:33:30 GMT expires: - '-1' pragma: @@ -5350,12 +6283,12 @@ interactions: ParameterSetName: - --type -n -g User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}]}' headers: cache-control: - no-cache @@ -5364,7 +6297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:12:29 GMT + - Tue, 18 Oct 2022 19:33:31 GMT expires: - '-1' pragma: @@ -5396,12 +6329,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5410,7 +6343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:12:31 GMT + - Tue, 18 Oct 2022 19:33:31 GMT expires: - '-1' pragma: @@ -5431,8 +6364,8 @@ interactions: - request: body: '{"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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208", - "name": "identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208", "type": + endpoint connection", "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de", + "name": "identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de", "type": "Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: Accept: @@ -5450,13 +6383,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5465,7 +6398,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:12:33 GMT + - Tue, 18 Oct 2022 19:33:33 GMT expires: - '-1' pragma: @@ -5481,7 +6414,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -5499,12 +6432,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5513,7 +6446,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:12:45 GMT + - Tue, 18 Oct 2022 19:33:43 GMT expires: - '-1' pragma: @@ -5545,12 +6478,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5559,7 +6492,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:12:56 GMT + - Tue, 18 Oct 2022 19:33:53 GMT expires: - '-1' pragma: @@ -5591,12 +6524,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5605,7 +6538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:13:09 GMT + - Tue, 18 Oct 2022 19:34:04 GMT expires: - '-1' pragma: @@ -5637,12 +6570,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5651,7 +6584,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:13:21 GMT + - Tue, 18 Oct 2022 19:34:16 GMT expires: - '-1' pragma: @@ -5683,12 +6616,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5697,7 +6630,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:13:33 GMT + - Tue, 18 Oct 2022 19:34:26 GMT expires: - '-1' pragma: @@ -5729,12 +6662,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5743,7 +6676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:13:43 GMT + - Tue, 18 Oct 2022 19:34:37 GMT expires: - '-1' pragma: @@ -5775,12 +6708,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5789,7 +6722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:13:56 GMT + - Tue, 18 Oct 2022 19:34:47 GMT expires: - '-1' pragma: @@ -5821,12 +6754,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5835,7 +6768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:14:07 GMT + - Tue, 18 Oct 2022 19:34:58 GMT expires: - '-1' pragma: @@ -5867,12 +6800,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5881,7 +6814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:14:19 GMT + - Tue, 18 Oct 2022 19:35:08 GMT expires: - '-1' pragma: @@ -5913,12 +6846,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5927,7 +6860,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:14:31 GMT + - Tue, 18 Oct 2022 19:35:19 GMT expires: - '-1' pragma: @@ -5959,12 +6892,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -5973,7 +6906,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:14:43 GMT + - Tue, 18 Oct 2022 19:35:29 GMT expires: - '-1' pragma: @@ -6005,12 +6938,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6019,7 +6952,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:14:55 GMT + - Tue, 18 Oct 2022 19:35:40 GMT expires: - '-1' pragma: @@ -6051,12 +6984,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6065,7 +6998,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:15:07 GMT + - Tue, 18 Oct 2022 19:35:51 GMT expires: - '-1' pragma: @@ -6097,12 +7030,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6111,7 +7044,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:15:18 GMT + - Tue, 18 Oct 2022 19:36:01 GMT expires: - '-1' pragma: @@ -6143,12 +7076,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6157,7 +7090,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:15:29 GMT + - Tue, 18 Oct 2022 19:36:12 GMT expires: - '-1' pragma: @@ -6189,12 +7122,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6203,7 +7136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:15:42 GMT + - Tue, 18 Oct 2022 19:36:22 GMT expires: - '-1' pragma: @@ -6235,12 +7168,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6249,7 +7182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:15:54 GMT + - Tue, 18 Oct 2022 19:36:33 GMT expires: - '-1' pragma: @@ -6258,6 +7191,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -6277,12 +7214,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6291,7 +7228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:16:05 GMT + - Tue, 18 Oct 2022 19:36:43 GMT expires: - '-1' pragma: @@ -6323,12 +7260,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6337,7 +7274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:16:16 GMT + - Tue, 18 Oct 2022 19:36:54 GMT expires: - '-1' pragma: @@ -6369,12 +7306,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6383,7 +7320,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:16:28 GMT + - Tue, 18 Oct 2022 19:37:05 GMT expires: - '-1' pragma: @@ -6415,12 +7352,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6429,7 +7366,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:16:31 GMT + - Tue, 18 Oct 2022 19:37:05 GMT expires: - '-1' pragma: @@ -6450,8 +7387,8 @@ interactions: - request: body: '{"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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208", - "name": "identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208", "type": + endpoint connection", "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de", + "name": "identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de", "type": "Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: Accept: @@ -6469,13 +7406,13 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6484,7 +7421,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:16:31 GMT + - Tue, 18 Oct 2022 19:37:06 GMT expires: - '-1' pragma: @@ -6518,12 +7455,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6532,7 +7469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:16:43 GMT + - Tue, 18 Oct 2022 19:37:17 GMT expires: - '-1' pragma: @@ -6564,12 +7501,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6578,7 +7515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:16:54 GMT + - Tue, 18 Oct 2022 19:37:28 GMT expires: - '-1' pragma: @@ -6587,6 +7524,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -6606,12 +7547,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6620,7 +7561,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:17:07 GMT + - Tue, 18 Oct 2022 19:37:38 GMT expires: - '-1' pragma: @@ -6652,12 +7593,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6666,7 +7607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:17:17 GMT + - Tue, 18 Oct 2022 19:37:48 GMT expires: - '-1' pragma: @@ -6698,12 +7639,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6712,7 +7653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:17:30 GMT + - Tue, 18 Oct 2022 19:37:59 GMT expires: - '-1' pragma: @@ -6744,12 +7685,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6758,7 +7699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:17:41 GMT + - Tue, 18 Oct 2022 19:38:09 GMT expires: - '-1' pragma: @@ -6790,12 +7731,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6804,7 +7745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:17:52 GMT + - Tue, 18 Oct 2022 19:38:20 GMT expires: - '-1' pragma: @@ -6836,12 +7777,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6850,7 +7791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:18:04 GMT + - Tue, 18 Oct 2022 19:38:30 GMT expires: - '-1' pragma: @@ -6882,12 +7823,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6896,7 +7837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:18:16 GMT + - Tue, 18 Oct 2022 19:38:41 GMT expires: - '-1' pragma: @@ -6928,12 +7869,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6942,7 +7883,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:18:27 GMT + - Tue, 18 Oct 2022 19:38:52 GMT expires: - '-1' pragma: @@ -6974,12 +7915,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -6988,7 +7929,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:18:39 GMT + - Tue, 18 Oct 2022 19:39:02 GMT expires: - '-1' pragma: @@ -7020,12 +7961,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7034,7 +7975,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:18:51 GMT + - Tue, 18 Oct 2022 19:39:13 GMT expires: - '-1' pragma: @@ -7066,12 +8007,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7080,7 +8021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:19:02 GMT + - Tue, 18 Oct 2022 19:39:24 GMT expires: - '-1' pragma: @@ -7112,12 +8053,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7126,7 +8067,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:19:13 GMT + - Tue, 18 Oct 2022 19:39:34 GMT expires: - '-1' pragma: @@ -7158,12 +8099,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7172,7 +8113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:19:26 GMT + - Tue, 18 Oct 2022 19:39:45 GMT expires: - '-1' pragma: @@ -7204,12 +8145,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7218,7 +8159,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:19:37 GMT + - Tue, 18 Oct 2022 19:39:55 GMT expires: - '-1' pragma: @@ -7250,12 +8191,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7264,7 +8205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:19:49 GMT + - Tue, 18 Oct 2022 19:40:05 GMT expires: - '-1' pragma: @@ -7296,12 +8237,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7310,7 +8251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:20:01 GMT + - Tue, 18 Oct 2022 19:40:16 GMT expires: - '-1' pragma: @@ -7342,12 +8283,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7356,7 +8297,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:20:13 GMT + - Tue, 18 Oct 2022 19:40:27 GMT expires: - '-1' pragma: @@ -7388,12 +8329,12 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7402,7 +8343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:20:24 GMT + - Tue, 18 Oct 2022 19:40:38 GMT expires: - '-1' pragma: @@ -7434,12 +8375,12 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7448,7 +8389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:20:27 GMT + - Tue, 18 Oct 2022 19:40:38 GMT expires: - '-1' pragma: @@ -7469,8 +8410,8 @@ interactions: - request: body: '{"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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208", - "name": "identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208", "type": + endpoint connection", "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de", + "name": "identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de", "type": "Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: Accept: @@ -7488,16 +8429,16 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTdkZmVlNDctNWU1OS00MmExLTg1MjgtMmRiYTNiYWRjMjlkO3JlZ2lvbj13ZXN0dXMy?api-version=2020-03-01&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZTI1MjQwNDItZjUyMC00MDQwLWFlMTktYWVjZjk3ZTljNTY2O3JlZ2lvbj13ZXN0dXMy?api-version=2020-03-01&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -7505,7 +8446,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:20:34 GMT + - Tue, 18 Oct 2022 19:40:44 GMT expires: - '-1' pragma: @@ -7535,13 +8476,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7550,7 +8491,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:20:45 GMT + - Tue, 18 Oct 2022 19:40:55 GMT expires: - '-1' pragma: @@ -7582,13 +8523,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7597,7 +8538,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:20:58 GMT + - Tue, 18 Oct 2022 19:41:05 GMT expires: - '-1' pragma: @@ -7629,13 +8570,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7644,7 +8585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:21:08 GMT + - Tue, 18 Oct 2022 19:41:16 GMT expires: - '-1' pragma: @@ -7676,13 +8617,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7691,7 +8632,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:21:21 GMT + - Tue, 18 Oct 2022 19:41:27 GMT expires: - '-1' pragma: @@ -7723,13 +8664,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7738,7 +8679,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:21:32 GMT + - Tue, 18 Oct 2022 19:41:37 GMT expires: - '-1' pragma: @@ -7770,13 +8711,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7785,7 +8726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:21:43 GMT + - Tue, 18 Oct 2022 19:41:48 GMT expires: - '-1' pragma: @@ -7817,13 +8758,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7832,7 +8773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:21:55 GMT + - Tue, 18 Oct 2022 19:41:58 GMT expires: - '-1' pragma: @@ -7864,13 +8805,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7879,7 +8820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:22:07 GMT + - Tue, 18 Oct 2022 19:42:09 GMT expires: - '-1' pragma: @@ -7911,13 +8852,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7926,7 +8867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:22:19 GMT + - Tue, 18 Oct 2022 19:42:20 GMT expires: - '-1' pragma: @@ -7958,13 +8899,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -7973,7 +8914,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:22:30 GMT + - Tue, 18 Oct 2022 19:42:31 GMT expires: - '-1' pragma: @@ -8005,13 +8946,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -8020,7 +8961,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:22:42 GMT + - Tue, 18 Oct 2022 19:42:41 GMT expires: - '-1' pragma: @@ -8052,13 +8993,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -8067,7 +9008,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:22:54 GMT + - Tue, 18 Oct 2022 19:42:52 GMT expires: - '-1' pragma: @@ -8099,13 +9040,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -8114,7 +9055,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:23:06 GMT + - Tue, 18 Oct 2022 19:43:02 GMT expires: - '-1' pragma: @@ -8146,13 +9087,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -8161,7 +9102,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:23:18 GMT + - Tue, 18 Oct 2022 19:43:13 GMT expires: - '-1' pragma: @@ -8193,13 +9134,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -8208,7 +9149,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:23:30 GMT + - Tue, 18 Oct 2022 19:43:24 GMT expires: - '-1' pragma: @@ -8240,13 +9181,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -8255,7 +9196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:23:41 GMT + - Tue, 18 Oct 2022 19:43:35 GMT expires: - '-1' pragma: @@ -8287,13 +9228,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -8302,7 +9243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:23:53 GMT + - Tue, 18 Oct 2022 19:43:44 GMT expires: - '-1' pragma: @@ -8334,13 +9275,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -8349,7 +9290,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:24:05 GMT + - Tue, 18 Oct 2022 19:43:55 GMT expires: - '-1' pragma: @@ -8381,13 +9322,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -8396,7 +9337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:24:16 GMT + - Tue, 18 Oct 2022 19:44:06 GMT expires: - '-1' pragma: @@ -8428,13 +9369,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g --description User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -8443,7 +9384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:24:29 GMT + - Tue, 18 Oct 2022 19:44:16 GMT expires: - '-1' pragma: @@ -8475,13 +9416,13 @@ interactions: ParameterSetName: - --type -n --resource-name -g User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","name":"identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' + endpoint connection","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/PrivateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","name":"identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}' headers: cache-control: - no-cache @@ -8490,7 +9431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:24:31 GMT + - Tue, 18 Oct 2022 19:44:18 GMT expires: - '-1' pragma: @@ -8524,15 +9465,15 @@ interactions: ParameterSetName: - --type -n --resource-name -g -y User-Agent: - - python/3.9.13 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.bd06cddc-4147-4b1a-8190-bd0ec5315208?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003/privateEndpointConnections/identitytesthub000003.55e8cc62-452a-4170-9858-b0934a8645de?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/locations/westus2/operationResults/aWQ9b3NfaWhfNjEyN2QyMTQtNjAyOS00YjJhLTk1ZTItNTFjOGIyMjQ0NWZkO3JlZ2lvbj13ZXN0dXMy?api-version=2020-03-01&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzcyNDgwNmQtNmE3OC00NDM2LWE5MGQtYjQyMjExYzU5ZGNhO3JlZ2lvbj13ZXN0dXMy?api-version=2020-03-01&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -8540,11 +9481,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:24:36 GMT + - Tue, 18 Oct 2022 19:44:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjEyN2QyMTQtNjAyOS00YjJhLTk1ZTItNTFjOGIyMjQ0NWZkO3JlZ2lvbj13ZXN0dXMy?api-version=2020-03-01&operationSource=other + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzcyNDgwNmQtNmE3OC00NDM2LWE5MGQtYjQyMjExYzU5ZGNhO3JlZ2lvbj13ZXN0dXMy?api-version=2020-03-01&operationSource=other pragma: - no-cache server: @@ -8572,7 +9513,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -8584,7 +9525,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:24:36 GMT + - Tue, 18 Oct 2022 19:44:22 GMT expires: - '-1' pragma: @@ -8614,9 +9555,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -8629,7 +9570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:24:38 GMT + - Tue, 18 Oct 2022 19:44:23 GMT expires: - '-1' pragma: @@ -8645,7 +9586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -8663,23 +9604,23 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uj3k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8wjE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2551' + - '2579' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:24:40 GMT + - Tue, 18 Oct 2022 19:44:24 GMT expires: - '-1' pragma: @@ -8711,7 +9652,7 @@ interactions: ParameterSetName: - --n -g --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -8723,7 +9664,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:24:42 GMT + - Tue, 18 Oct 2022 19:44:24 GMT expires: - '-1' pragma: @@ -8753,9 +9694,9 @@ interactions: ParameterSetName: - --n -g --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -8768,7 +9709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:24:44 GMT + - Tue, 18 Oct 2022 19:44:25 GMT expires: - '-1' pragma: @@ -8777,6 +9718,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-writes: @@ -8798,23 +9743,23 @@ interactions: ParameterSetName: - --n -g --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uj4k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8wjE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2551' + - '2579' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:24:45 GMT + - Tue, 18 Oct 2022 19:44:26 GMT expires: - '-1' pragma: @@ -8823,6 +9768,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -8842,7 +9791,7 @@ interactions: ParameterSetName: - --n -g --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -8854,7 +9803,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:24:56 GMT + - Tue, 18 Oct 2022 19:44:36 GMT expires: - '-1' pragma: @@ -8884,9 +9833,9 @@ interactions: ParameterSetName: - --n -g --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -8899,7 +9848,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:24:58 GMT + - Tue, 18 Oct 2022 19:44:36 GMT expires: - '-1' pragma: @@ -8915,7 +9864,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -8933,23 +9882,23 @@ interactions: ParameterSetName: - --n -g --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uj4k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8wlA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2551' + - '2579' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:25:00 GMT + - Tue, 18 Oct 2022 19:44:37 GMT expires: - '-1' pragma: @@ -8981,7 +9930,7 @@ interactions: ParameterSetName: - --n -g --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -8993,7 +9942,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:25:11 GMT + - Tue, 18 Oct 2022 19:44:48 GMT expires: - '-1' pragma: @@ -9023,9 +9972,9 @@ interactions: ParameterSetName: - --n -g --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -9038,7 +9987,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:25:12 GMT + - Tue, 18 Oct 2022 19:44:48 GMT expires: - '-1' pragma: @@ -9047,10 +9996,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-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -9068,23 +10021,23 @@ interactions: ParameterSetName: - --n -g --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uj/Y=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8wlA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2540' + - '2579' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:25:13 GMT + - Tue, 18 Oct 2022 19:44:48 GMT expires: - '-1' pragma: @@ -9093,6 +10046,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -9106,13 +10063,13 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub identity assign + - iot hub show Connection: - keep-alive ParameterSetName: - - -n -g --user + - --n -g --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -9124,7 +10081,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:25:14 GMT + - Tue, 18 Oct 2022 19:44:59 GMT expires: - '-1' pragma: @@ -9144,7 +10101,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub identity assign + - iot hub show Connection: - keep-alive Content-Length: @@ -9152,11 +10109,11 @@ interactions: Content-Type: - application/json ParameterSetName: - - -n -g --user + - --n -g --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -9169,7 +10126,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:25:16 GMT + - Tue, 18 Oct 2022 19:45:00 GMT expires: - '-1' pragma: @@ -9197,29 +10154,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub identity assign + - iot hub show Connection: - keep-alive ParameterSetName: - - -n -g --user + - --n -g --query User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uj/Y=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8w5o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2540' + - '2568' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:25:18 GMT + - Tue, 18 Oct 2022 19:45:01 GMT expires: - '-1' pragma: @@ -9238,24 +10195,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/Uj/Y=", "properties": - {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "privateEndpointConnections": - [], "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": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, - "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", - "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": - false, "cloudToDevice": {"maxDeliveryCount": 10, "defaultTtlAsIso8601": "PT1H", - "feedback": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": - 10}}, "features": "None"}, "sku": {"name": "S1", "capacity": 1}, "identity": - {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008": - {}}}}' + body: null headers: Accept: - application/json @@ -9265,82 +10205,67 @@ interactions: - iot hub identity assign Connection: - keep-alive - Content-Length: - - '2030' - Content-Type: - - application/json - If-Match: - - '{''IF-MATCH'': ''AAAADG/Uj/Y=''}' ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uj/Y=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"}}' + string: '' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZTE5MDdmN2YtNTc3ZC00YjI0LThjN2EtNTU2ZGEyYWFiMGUyO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '4570' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 31 Aug 2022 10:25:28 GMT + - Tue, 18 Oct 2022 19:45:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' status: - code: 201 - message: Created + code: 204 + message: No Content - request: - body: null + body: '{"name": "identitytesthub000003"}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - iot hub identity assign Connection: - keep-alive + Content-Length: + - '33' + Content-Type: + - application/json ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZTE5MDdmN2YtNTc3ZC00YjI0LThjN2EtNTU2ZGEyYWFiMGUyO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name + ''identitytesthub000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '22' + - '113' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:25:59 GMT + - Tue, 18 Oct 2022 19:45:02 GMT expires: - '-1' pragma: @@ -9355,6 +10280,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -9362,7 +10289,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -9372,23 +10299,23 @@ interactions: ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UkHM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"9c1cce91-22b5-40a3-b393-c2ca33d317b5","principalId":"464c30e6-d9f1-40e6-8f21-4a37b38e2a69"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8w5o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '3088' + - '2568' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:26:00 GMT + - Tue, 18 Oct 2022 19:45:02 GMT expires: - '-1' pragma: @@ -9407,52 +10334,267 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8w5o=", "properties": + {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "privateEndpointConnections": + [], "eventHubEndpoints": {"events": {"retentionTimeInDays": 1, "partitionCount": + 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], + "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": []}, "routes": + [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": + "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, + "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", + "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": + false, "cloudToDevice": {"maxDeliveryCount": 10, "defaultTtlAsIso8601": "PT1H", + "feedback": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": + 10}}, "features": "None"}, "sku": {"name": "S1", "capacity": 1}, "identity": + {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008": + {}}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - iot hub identity remove + - iot hub identity assign Connection: - keep-alive + Content-Length: + - '2060' + Content-Type: + - application/json + If-Match: + - '{''IF-MATCH'': ''AAAADHO8w5o=''}' ParameterSetName: - - -n -g --system + - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8w5o=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2RiMTMzY2ItNzY3MC00MTIwLTlmMjAtZmRhOTZhMzk4N2ZhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '0' + - '4570' + content-type: + - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:26:02 GMT + - Tue, 18 Oct 2022 19:45:07 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '4999' status: - code: 204 - message: No Content + code: 201 + message: Created - request: - body: '{"name": "identitytesthub000003"}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - iot hub identity remove + - iot hub identity assign + Connection: + - keep-alive + ParameterSetName: + - -n -g --user + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2RiMTMzY2ItNzY3MC00MTIwLTlmMjAtZmRhOTZhMzk4N2ZhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:45:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity assign + Connection: + - keep-alive + ParameterSetName: + - -n -g --user + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2RiMTMzY2ItNzY3MC00MTIwLTlmMjAtZmRhOTZhMzk4N2ZhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:45:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity assign + Connection: + - keep-alive + ParameterSetName: + - -n -g --user + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8xMw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"c0c2dc6f-54d0-4499-9750-dc81af1bb8f8","principalId":"62b4a490-abc2-4999-9ab1-6f21e7de6b1d"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '3116' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:45:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --system + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 18 Oct 2022 19:45:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: '{"name": "identitytesthub000003"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity remove Connection: - keep-alive Content-Length: @@ -9462,9 +10604,9 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -9477,7 +10619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:26:03 GMT + - Tue, 18 Oct 2022 19:45:40 GMT expires: - '-1' pragma: @@ -9493,7 +10635,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -9511,23 +10653,23 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UkHM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"9c1cce91-22b5-40a3-b393-c2ca33d317b5","principalId":"464c30e6-d9f1-40e6-8f21-4a37b38e2a69"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc"}},"principalId":"74849725-aea1-49ec-9a5b-8247db57e67a"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8xMw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"c0c2dc6f-54d0-4499-9750-dc81af1bb8f8","principalId":"62b4a490-abc2-4999-9ab1-6f21e7de6b1d"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c"}},"principalId":"52504cee-bb5f-4205-8439-cc8c257fb4e5"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '3088' + - '3116' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:26:05 GMT + - Tue, 18 Oct 2022 19:45:41 GMT expires: - '-1' pragma: @@ -9546,14 +10688,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/UkHM=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8xMw=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "privateEndpointConnections": [], "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": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": []}, "routes": + [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": + "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": @@ -9574,28 +10716,28 @@ interactions: Connection: - keep-alive Content-Length: - - '2014' + - '2044' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/UkHM=''}' + - '{''IF-MATCH'': ''AAAADHO8xMw=''}' ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UkHM=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8xMw=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{}}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGViYmVkZTItMTZhMi00YTZiLWFkZGQtZjQ0ZjI1NzY0NjhjO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGFhNmM3NzMtNmE1Ni00MjBhLWEyY2YtN2UzYWIxZmRjNzg4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -9603,7 +10745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:26:14 GMT + - Tue, 18 Oct 2022 19:45:46 GMT expires: - '-1' pragma: @@ -9633,9 +10775,55 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGFhNmM3NzMtNmE1Ni00MjBhLWEyY2YtN2UzYWIxZmRjNzg4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:45: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: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --system + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGViYmVkZTItMTZhMi00YTZiLWFkZGQtZjQ0ZjI1NzY0NjhjO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGFhNmM3NzMtNmE1Ni00MjBhLWEyY2YtN2UzYWIxZmRjNzg4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9647,7 +10835,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:26:45 GMT + - Tue, 18 Oct 2022 19:46:15 GMT expires: - '-1' pragma: @@ -9679,22 +10867,22 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UkU0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"9c1cce91-22b5-40a3-b393-c2ca33d317b5","principalId":"464c30e6-d9f1-40e6-8f21-4a37b38e2a69"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc"}}},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8x0Q=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"c0c2dc6f-54d0-4499-9750-dc81af1bb8f8","principalId":"62b4a490-abc2-4999-9ab1-6f21e7de6b1d"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c"}}},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2969' + - '2997' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:26:45 GMT + - Tue, 18 Oct 2022 19:46:16 GMT expires: - '-1' pragma: @@ -9726,7 +10914,7 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -9738,7 +10926,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:26:48 GMT + - Tue, 18 Oct 2022 19:46:17 GMT expires: - '-1' pragma: @@ -9768,9 +10956,9 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -9783,7 +10971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:26:50 GMT + - Tue, 18 Oct 2022 19:46:17 GMT expires: - '-1' pragma: @@ -9799,7 +10987,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -9817,22 +11005,22 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UkU0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"9c1cce91-22b5-40a3-b393-c2ca33d317b5","principalId":"464c30e6-d9f1-40e6-8f21-4a37b38e2a69"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc"}}},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8x0Q=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"c0c2dc6f-54d0-4499-9750-dc81af1bb8f8","principalId":"62b4a490-abc2-4999-9ab1-6f21e7de6b1d"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c"}}},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2969' + - '2997' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:26:52 GMT + - Tue, 18 Oct 2022 19:46:18 GMT expires: - '-1' pragma: @@ -9851,14 +11039,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/UkU0=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8x0Q=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "privateEndpointConnections": [], "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": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": []}, "routes": + [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": + "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": @@ -9879,29 +11067,29 @@ interactions: Connection: - keep-alive Content-Length: - - '2030' + - '2060' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/UkU0=''}' + - '{''IF-MATCH'': ''AAAADHO8x0Q=''}' ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UkU0=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{}},"principalId":"7a314e71-6e85-4e01-8b14-eb4bea9c5496"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8x0Q=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{}},"principalId":"e990bbf0-cfad-4ef6-a5d9-25f33f838ca6"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjY0ZTA3ZTItODUwZC00NGNmLWJlZTAtYTRlYzQ1MWI0OGQ2O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzliNTQ4NDMtODU2My00MjI4LTk1MzUtMDVlZjExMDhjYzk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -9909,7 +11097,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:26:59 GMT + - Tue, 18 Oct 2022 19:46:24 GMT expires: - '-1' pragma: @@ -9921,7 +11109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -9939,9 +11127,55 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzliNTQ4NDMtODU2My00MjI4LTk1MzUtMDVlZjExMDhjYzk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:46:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity assign + Connection: + - keep-alive + ParameterSetName: + - -n -g --system + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjY0ZTA3ZTItODUwZC00NGNmLWJlZTAtYTRlYzQ1MWI0OGQ2O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzliNTQ4NDMtODU2My00MjI4LTk1MzUtMDVlZjExMDhjYzk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9953,7 +11187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:27:29 GMT + - Tue, 18 Oct 2022 19:46:55 GMT expires: - '-1' pragma: @@ -9985,23 +11219,23 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UkoU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"9c1cce91-22b5-40a3-b393-c2ca33d317b5","principalId":"464c30e6-d9f1-40e6-8f21-4a37b38e2a69"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc"}},"principalId":"7a314e71-6e85-4e01-8b14-eb4bea9c5496"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8yps=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"c0c2dc6f-54d0-4499-9750-dc81af1bb8f8","principalId":"62b4a490-abc2-4999-9ab1-6f21e7de6b1d"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c"}},"principalId":"e990bbf0-cfad-4ef6-a5d9-25f33f838ca6"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '3088' + - '3116' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:27:30 GMT + - Tue, 18 Oct 2022 19:46:56 GMT expires: - '-1' pragma: @@ -10033,7 +11267,7 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -10045,7 +11279,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:27:32 GMT + - Tue, 18 Oct 2022 19:46:55 GMT expires: - '-1' pragma: @@ -10075,9 +11309,9 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -10090,7 +11324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:27:34 GMT + - Tue, 18 Oct 2022 19:46:56 GMT expires: - '-1' pragma: @@ -10124,23 +11358,23 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UkoU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"9c1cce91-22b5-40a3-b393-c2ca33d317b5","principalId":"464c30e6-d9f1-40e6-8f21-4a37b38e2a69"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc"}},"principalId":"7a314e71-6e85-4e01-8b14-eb4bea9c5496"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8yps=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"c0c2dc6f-54d0-4499-9750-dc81af1bb8f8","principalId":"62b4a490-abc2-4999-9ab1-6f21e7de6b1d"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c"}},"principalId":"e990bbf0-cfad-4ef6-a5d9-25f33f838ca6"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '3088' + - '3116' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:27:36 GMT + - Tue, 18 Oct 2022 19:46:57 GMT expires: - '-1' pragma: @@ -10159,14 +11393,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/UkoU=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8yps=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "privateEndpointConnections": [], "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": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": []}, "routes": + [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": + "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": @@ -10187,28 +11421,28 @@ interactions: Connection: - keep-alive Content-Length: - - '2014' + - '2044' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/UkoU=''}' + - '{''IF-MATCH'': ''AAAADHO8yps=''}' ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UkoU=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8yps=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{}}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGZlN2I1MGMtYTQ5Mi00NzMyLWI0YzAtZjMxY2Q1ZGZhY2NmO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTI3YWJjYzEtMmQwNy00MWIwLWE4ZDYtZmM0Mzg1MzI2M2ExO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -10216,7 +11450,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:27:45 GMT + - Tue, 18 Oct 2022 19:47:01 GMT expires: - '-1' pragma: @@ -10246,9 +11480,55 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGZlN2I1MGMtYTQ5Mi00NzMyLWI0YzAtZjMxY2Q1ZGZhY2NmO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTI3YWJjYzEtMmQwNy00MWIwLWE4ZDYtZmM0Mzg1MzI2M2ExO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:47: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --system-assigned + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTI3YWJjYzEtMmQwNy00MWIwLWE4ZDYtZmM0Mzg1MzI2M2ExO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -10260,7 +11540,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:28:15 GMT + - Tue, 18 Oct 2022 19:47:31 GMT expires: - '-1' pragma: @@ -10292,22 +11572,22 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uk3Q=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"9c1cce91-22b5-40a3-b393-c2ca33d317b5","principalId":"464c30e6-d9f1-40e6-8f21-4a37b38e2a69"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc"}}},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8za4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"c0c2dc6f-54d0-4499-9750-dc81af1bb8f8","principalId":"62b4a490-abc2-4999-9ab1-6f21e7de6b1d"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c"}}},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2969' + - '2997' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:28:16 GMT + - Tue, 18 Oct 2022 19:47:32 GMT expires: - '-1' pragma: @@ -10339,7 +11619,7 @@ interactions: ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -10351,7 +11631,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:28:19 GMT + - Tue, 18 Oct 2022 19:47:33 GMT expires: - '-1' pragma: @@ -10381,9 +11661,9 @@ interactions: ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -10396,7 +11676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:28:20 GMT + - Tue, 18 Oct 2022 19:47:34 GMT expires: - '-1' pragma: @@ -10430,22 +11710,22 @@ interactions: ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uk3Q=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"9c1cce91-22b5-40a3-b393-c2ca33d317b5","principalId":"464c30e6-d9f1-40e6-8f21-4a37b38e2a69"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc"}}},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8za4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000007":{"clientId":"c0c2dc6f-54d0-4499-9750-dc81af1bb8f8","principalId":"62b4a490-abc2-4999-9ab1-6f21e7de6b1d"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c"}}},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2969' + - '2997' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:28:23 GMT + - Tue, 18 Oct 2022 19:47:35 GMT expires: - '-1' pragma: @@ -10464,14 +11744,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/Uk3Q=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO8za4=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "privateEndpointConnections": [], "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": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": []}, "routes": + [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": + "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": @@ -10491,28 +11771,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1840' + - '1870' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/Uk3Q=''}' + - '{''IF-MATCH'': ''AAAADHO8za4=''}' ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uk3Q=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{}}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO8za4=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{}}}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDQzODM4MDAtNzM4ZC00NWMxLWI2N2ItZGU3MWJjZDk5MTNkO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGVhYTA1NmUtOGJmZi00ZmIzLWFhYWYtNTljNjM0NWYxNjU3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -10520,7 +11800,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:28:31 GMT + - Tue, 18 Oct 2022 19:47:40 GMT expires: - '-1' pragma: @@ -10550,9 +11830,55 @@ interactions: ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDQzODM4MDAtNzM4ZC00NWMxLWI2N2ItZGU3MWJjZDk5MTNkO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGVhYTA1NmUtOGJmZi00ZmIzLWFhYWYtNTljNjM0NWYxNjU3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:47:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --user + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGVhYTA1NmUtOGJmZi00ZmIzLWFhYWYtNTljNjM0NWYxNjU3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -10564,7 +11890,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:29:01 GMT + - Tue, 18 Oct 2022 19:48:10 GMT expires: - '-1' pragma: @@ -10596,22 +11922,22 @@ interactions: ParameterSetName: - -n -g --user User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UlJM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc"}}},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO80KQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c"}}},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2695' + - '2723' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:29:02 GMT + - Tue, 18 Oct 2022 19:48:11 GMT expires: - '-1' pragma: @@ -10643,7 +11969,7 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -10655,7 +11981,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:29:03 GMT + - Tue, 18 Oct 2022 19:48:11 GMT expires: - '-1' pragma: @@ -10685,9 +12011,9 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -10700,7 +12026,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:29:06 GMT + - Tue, 18 Oct 2022 19:48:12 GMT expires: - '-1' pragma: @@ -10716,7 +12042,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -10734,22 +12060,22 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UlJM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc"}}},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO80KQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c"}}},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2695' + - '2723' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:29:08 GMT + - Tue, 18 Oct 2022 19:48:13 GMT expires: - '-1' pragma: @@ -10768,14 +12094,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/UlJM=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO80KQ=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "privateEndpointConnections": [], "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": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": []}, "routes": + [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": + "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": @@ -10795,29 +12121,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1856' + - '1886' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/UlJM=''}' + - '{''IF-MATCH'': ''AAAADHO80KQ=''}' ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UlJM=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{}},"principalId":"09b3da6e-7dfc-45f5-af0c-ffe76fe877cd"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO80KQ=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{}},"principalId":"55f6431c-d0a8-49ee-8568-40ab6ed6e903"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYWU1ZjlhOWUtNTg5NS00NTRkLTg4OGEtZjY0NjIwYTIxZDM0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMmY0OTkyNDMtM2E5MS00YTVhLWJiMTItMmRiNjAwNmE4MzUyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -10825,7 +12151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:29:16 GMT + - Tue, 18 Oct 2022 19:48:18 GMT expires: - '-1' pragma: @@ -10855,9 +12181,55 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYWU1ZjlhOWUtNTg5NS00NTRkLTg4OGEtZjY0NjIwYTIxZDM0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMmY0OTkyNDMtM2E5MS00YTVhLWJiMTItMmRiNjAwNmE4MzUyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:48: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity assign + Connection: + - keep-alive + ParameterSetName: + - -n -g --system + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMmY0OTkyNDMtM2E5MS00YTVhLWJiMTItMmRiNjAwNmE4MzUyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -10869,7 +12241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:29:46 GMT + - Tue, 18 Oct 2022 19:48:48 GMT expires: - '-1' pragma: @@ -10901,23 +12273,23 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uldg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc"}},"principalId":"09b3da6e-7dfc-45f5-af0c-ffe76fe877cd"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO80wk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c"}},"principalId":"55f6431c-d0a8-49ee-8568-40ab6ed6e903"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2814' + - '2842' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:29:47 GMT + - Tue, 18 Oct 2022 19:48:48 GMT expires: - '-1' pragma: @@ -10949,7 +12321,7 @@ interactions: ParameterSetName: - -n -g --user-assigned User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -10961,7 +12333,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:29:49 GMT + - Tue, 18 Oct 2022 19:48:48 GMT expires: - '-1' pragma: @@ -10991,9 +12363,9 @@ interactions: ParameterSetName: - -n -g --user-assigned User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -11006,7 +12378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:29:51 GMT + - Tue, 18 Oct 2022 19:48:50 GMT expires: - '-1' pragma: @@ -11040,23 +12412,23 @@ interactions: ParameterSetName: - -n -g --user-assigned User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uldg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"213ef35c-6104-498b-9a62-b23d9126f6cd","principalId":"adb37461-6dac-44a3-a769-b66d0cff7f97"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"a27a1dac-a237-4aa2-8d94-68b3cc60b56d","principalId":"96ab32c9-fac0-4a2d-b464-b98df74d9bbc"}},"principalId":"09b3da6e-7dfc-45f5-af0c-ffe76fe877cd"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO80wk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000006":{"clientId":"55bd2251-3b42-41f4-9d2a-d77adfe6f1e7","principalId":"d89db706-a930-43f0-b2b2-bd3e1fcc8e50"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity000008":{"clientId":"d6f7b65e-2cd7-409e-9512-65a44ebd1806","principalId":"b48da4a8-12ca-4118-971f-29f2e120ad1c"}},"principalId":"55f6431c-d0a8-49ee-8568-40ab6ed6e903"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2814' + - '2842' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:29:53 GMT + - Tue, 18 Oct 2022 19:48:51 GMT expires: - '-1' pragma: @@ -11075,14 +12447,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/Uldg=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO80wk=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "privateEndpointConnections": [], "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": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": []}, "routes": + [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": + "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": @@ -11100,28 +12472,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1466' + - '1496' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/Uldg=''}' + - '{''IF-MATCH'': ''AAAADHO80wk=''}' ParameterSetName: - -n -g --user-assigned User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uldg=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"09b3da6e-7dfc-45f5-af0c-ffe76fe877cd"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO80wk=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"55f6431c-d0a8-49ee-8568-40ab6ed6e903"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjczYzdmMDctZTc2Zi00YzQyLWJhY2MtY2IwNDM0OGRkNTg0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjZlMjM0NzctZjAxNy00MTE3LWIwYWMtOWRmOTcwNDk0MTA2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -11129,7 +12501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:30:01 GMT + - Tue, 18 Oct 2022 19:48:54 GMT expires: - '-1' pragma: @@ -11141,7 +12513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + - '4998' status: code: 201 message: Created @@ -11159,9 +12531,55 @@ interactions: ParameterSetName: - -n -g --user-assigned User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjZlMjM0NzctZjAxNy00MTE3LWIwYWMtOWRmOTcwNDk0MTA2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:48: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --user-assigned + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjczYzdmMDctZTc2Zi00YzQyLWJhY2MtY2IwNDM0OGRkNTg0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjZlMjM0NzctZjAxNy00MTE3LWIwYWMtOWRmOTcwNDk0MTA2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -11173,7 +12591,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:30:32 GMT + - Tue, 18 Oct 2022 19:49:24 GMT expires: - '-1' pragma: @@ -11205,22 +12623,22 @@ interactions: ParameterSetName: - -n -g --user-assigned User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uln8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"09b3da6e-7dfc-45f5-af0c-ffe76fe877cd"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO81Ww=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"55f6431c-d0a8-49ee-8568-40ab6ed6e903"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2225' + - '2253' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:30:33 GMT + - Tue, 18 Oct 2022 19:49:25 GMT expires: - '-1' pragma: @@ -11252,7 +12670,7 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -11264,7 +12682,7 @@ interactions: content-length: - '0' date: - - Wed, 31 Aug 2022 10:30:35 GMT + - Tue, 18 Oct 2022 19:49:25 GMT expires: - '-1' pragma: @@ -11294,9 +12712,9 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -11309,7 +12727,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:30:37 GMT + - Tue, 18 Oct 2022 19:49:25 GMT expires: - '-1' pragma: @@ -11325,7 +12743,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -11343,22 +12761,22 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uln8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned","principalId":"09b3da6e-7dfc-45f5-af0c-ffe76fe877cd"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO81Ww=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"55f6431c-d0a8-49ee-8568-40ab6ed6e903"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2225' + - '2253' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:30:39 GMT + - Tue, 18 Oct 2022 19:49:26 GMT expires: - '-1' pragma: @@ -11377,14 +12795,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "etag": "AAAADG/Uln8=", "properties": + body: '{"location": "westus2", "tags": {}, "etag": "AAAADHO81Ww=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "privateEndpointConnections": [], "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": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": []}, "routes": + [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": + "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer", "authenticationType": "identityBased"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": @@ -11402,28 +12820,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1456' + - '1486' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADG/Uln8=''}' + - '{''IF-MATCH'': ''AAAADHO81Ww=''}' ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/Uln8=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron-operationmonitoring","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-276d163e-ccfb-4d8b-a09c-258d9cf89738-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-67e5e517-0ca8-4c5b-b147-02b4d4fc8bfb-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 31 Aug 2022 10:00:08 GMT","ModifiedTime":"Wed, 31 Aug 2022 10:00:08 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO81Ww=","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":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg-operationmonitoring","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-47d86031-1971-44c7-9d2d-b16cae4b21ff-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3b3054f1-61da-417c-8993-4450985a0bf9-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 19:22:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 19:22:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfN2ZkMTIyNjgtYWIwOC00ODRiLTg1NmYtYzBiYzYyNzU1MDg5O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDJjNjY2MTMtY2I0My00YjZiLWEzZjAtMWQzNmVkMzk4ZmE4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -11431,7 +12849,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:30:48 GMT + - Tue, 18 Oct 2022 19:49:30 GMT expires: - '-1' pragma: @@ -11461,9 +12879,55 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDJjNjY2MTMtY2I0My00YjZiLWEzZjAtMWQzNmVkMzk4ZmE4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 19:49:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub identity remove + Connection: + - keep-alive + ParameterSetName: + - -n -g --system + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfN2ZkMTIyNjgtYWIwOC00ODRiLTg1NmYtYzBiYzYyNzU1MDg5O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDJjNjY2MTMtY2I0My00YjZiLWEzZjAtMWQzNmVkMzk4ZmE4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -11475,7 +12939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:31:19 GMT + - Tue, 18 Oct 2022 19:50:01 GMT expires: - '-1' pragma: @@ -11507,22 +12971,22 @@ interactions: ParameterSetName: - -n -g --system User-Agent: - - AZURECLI/2.39.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.9.13 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADG/UmAU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubym2bziuron","endpoint":"sb://iothub-ns-identityte-21259465-da1ad7f097.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-31T09:58:28.2833333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/identitytesthub000003","name":"identitytesthub000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO815w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthub000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubz5hvrnarwg","endpoint":"sb://iothub-ns-identityte-22326378-13687d597a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T19:20:52.1133333Z"}}' headers: cache-control: - no-cache content-length: - - '2112' + - '2140' content-type: - application/json; charset=utf-8 date: - - Wed, 31 Aug 2022 10:31:20 GMT + - Tue, 18 Oct 2022 19:50:02 GMT expires: - '-1' pragma: 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 abcc2c4efb7..a4165221efa 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,21 +13,22 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2022-05-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/azext","name":"azext","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-15T07:20:26.3629732Z","key2":"2021-10-15T07:20:26.3629732Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T07:20:26.3629732Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T07:20:26.2379798Z","primaryEndpoints":{"dfs":"https://azext.dfs.core.windows.net/","web":"https://azext.z13.web.core.windows.net/","blob":"https://azext.blob.core.windows.net/","queue":"https://azext.queue.core.windows.net/","table":"https://azext.table.core.windows.net/","file":"https://azext.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azext-secondary.dfs.core.windows.net/","web":"https://azext-secondary.z13.web.core.windows.net/","blob":"https://azext-secondary.blob.core.windows.net/","queue":"https://azext-secondary.queue.core.windows.net/","table":"https://azext-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestresult/providers/Microsoft.Storage/storageAccounts/clitestresultstac","name":"clitestresultstac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-15T06:20:52.7844389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-15T06:20:52.6907255Z","primaryEndpoints":{"dfs":"https://clitestresultstac.dfs.core.windows.net/","web":"https://clitestresultstac.z13.web.core.windows.net/","blob":"https://clitestresultstac.blob.core.windows.net/","queue":"https://clitestresultstac.queue.core.windows.net/","table":"https://clitestresultstac.table.core.windows.net/","file":"https://clitestresultstac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://clitestresultstac-secondary.dfs.core.windows.net/","web":"https://clitestresultstac-secondary.z13.web.core.windows.net/","blob":"https://clitestresultstac-secondary.blob.core.windows.net/","queue":"https://clitestresultstac-secondary.queue.core.windows.net/","table":"https://clitestresultstac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/galleryapptestaccount","name":"galleryapptestaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-20T02:51:38.9977139Z","key2":"2021-10-20T02:51:38.9977139Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-20T02:51:38.9977139Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-20T02:51:38.8727156Z","primaryEndpoints":{"dfs":"https://galleryapptestaccount.dfs.core.windows.net/","web":"https://galleryapptestaccount.z13.web.core.windows.net/","blob":"https://galleryapptestaccount.blob.core.windows.net/","queue":"https://galleryapptestaccount.queue.core.windows.net/","table":"https://galleryapptestaccount.table.core.windows.net/","file":"https://galleryapptestaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hang-rg/providers/Microsoft.Storage/storageAccounts/hangstorage","name":"hangstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-04-22T03:09:52.5634047Z","key2":"2022-04-22T03:09:52.5634047Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"isSftpEnabled":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-22T03:09:52.5790274Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-22T03:09:52.5790274Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-22T03:09:52.4227640Z","primaryEndpoints":{"dfs":"https://hangstorage.dfs.core.windows.net/","web":"https://hangstorage.z13.web.core.windows.net/","blob":"https://hangstorage.blob.core.windows.net/","queue":"https://hangstorage.queue.core.windows.net/","table":"https://hangstorage.table.core.windows.net/","file":"https://hangstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/portal2cli/providers/Microsoft.Storage/storageAccounts/portal2clistorage","name":"portal2clistorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-14T07:23:08.8752602Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-14T07:23:08.7502552Z","primaryEndpoints":{"dfs":"https://portal2clistorage.dfs.core.windows.net/","web":"https://portal2clistorage.z13.web.core.windows.net/","blob":"https://portal2clistorage.blob.core.windows.net/","queue":"https://portal2clistorage.queue.core.windows.net/","table":"https://portal2clistorage.table.core.windows.net/","file":"https://portal2clistorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://portal2clistorage-secondary.dfs.core.windows.net/","web":"https://portal2clistorage-secondary.z13.web.core.windows.net/","blob":"https://portal2clistorage-secondary.blob.core.windows.net/","queue":"https://portal2clistorage-secondary.queue.core.windows.net/","table":"https://portal2clistorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/privatepackage","name":"privatepackage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-19T08:53:09.0238938Z","key2":"2021-10-19T08:53:09.0238938Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-19T08:53:09.0238938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-19T08:53:08.9301661Z","primaryEndpoints":{"dfs":"https://privatepackage.dfs.core.windows.net/","web":"https://privatepackage.z13.web.core.windows.net/","blob":"https://privatepackage.blob.core.windows.net/","queue":"https://privatepackage.queue.core.windows.net/","table":"https://privatepackage.table.core.windows.net/","file":"https://privatepackage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://privatepackage-secondary.dfs.core.windows.net/","web":"https://privatepackage-secondary.z13.web.core.windows.net/","blob":"https://privatepackage-secondary.blob.core.windows.net/","queue":"https://privatepackage-secondary.queue.core.windows.net/","table":"https://privatepackage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/queuetest/providers/Microsoft.Storage/storageAccounts/qteststac","name":"qteststac","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-11-10T05:21:49.0582561Z","key2":"2021-11-10T05:21:49.0582561Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-10T05:21:49.0582561Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-10T05:21:48.9488735Z","primaryEndpoints":{"dfs":"https://qteststac.dfs.core.windows.net/","web":"https://qteststac.z13.web.core.windows.net/","blob":"https://qteststac.blob.core.windows.net/","queue":"https://qteststac.queue.core.windows.net/","table":"https://qteststac.table.core.windows.net/","file":"https://qteststac.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://qteststac-secondary.dfs.core.windows.net/","web":"https://qteststac-secondary.z13.web.core.windows.net/","blob":"https://qteststac-secondary.blob.core.windows.net/","queue":"https://qteststac-secondary.queue.core.windows.net/","table":"https://qteststac-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-purview-msyyc/providers/Microsoft.Storage/storageAccounts/scaneastusxncccyt","name":"scaneastusxncccyt","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-23T01:56:19.6672075Z","key2":"2021-08-23T01:56:19.6672075Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T01:56:19.6672075Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T01:56:19.5422473Z","primaryEndpoints":{"dfs":"https://scaneastusxncccyt.dfs.core.windows.net/","web":"https://scaneastusxncccyt.z13.web.core.windows.net/","blob":"https://scaneastusxncccyt.blob.core.windows.net/","queue":"https://scaneastusxncccyt.queue.core.windows.net/","table":"https://scaneastusxncccyt.table.core.windows.net/","file":"https://scaneastusxncccyt.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageaccountsynapse1","name":"storageaccountsynapse1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-03T06:18:46.5540684Z","key2":"2022-03-03T06:18:46.5540684Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T06:18:46.5696968Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T06:18:46.5696968Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T06:18:46.4134367Z","primaryEndpoints":{"dfs":"https://storageaccountsynapse1.dfs.core.windows.net/","web":"https://storageaccountsynapse1.z13.web.core.windows.net/","blob":"https://storageaccountsynapse1.blob.core.windows.net/","queue":"https://storageaccountsynapse1.queue.core.windows.net/","table":"https://storageaccountsynapse1.table.core.windows.net/","file":"https://storageaccountsynapse1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://storageaccountsynapse1-secondary.dfs.core.windows.net/","web":"https://storageaccountsynapse1-secondary.z13.web.core.windows.net/","blob":"https://storageaccountsynapse1-secondary.blob.core.windows.net/","queue":"https://storageaccountsynapse1-secondary.queue.core.windows.net/","table":"https://storageaccountsynapse1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testvlw","name":"testvlw","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-27T06:47:50.5497427Z","key2":"2021-10-27T06:47:50.5497427Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:47:50.5497427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:47:50.4247606Z","primaryEndpoints":{"dfs":"https://testvlw.dfs.core.windows.net/","web":"https://testvlw.z13.web.core.windows.net/","blob":"https://testvlw.blob.core.windows.net/","queue":"https://testvlw.queue.core.windows.net/","table":"https://testvlw.table.core.windows.net/","file":"https://testvlw.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testvlw-secondary.dfs.core.windows.net/","web":"https://testvlw-secondary.z13.web.core.windows.net/","blob":"https://testvlw-secondary.blob.core.windows.net/","queue":"https://testvlw-secondary.queue.core.windows.net/","table":"https://testvlw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssa","name":"yssa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"key1":"value1"},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-16T08:39:21.3287573Z","key2":"2021-08-16T08:39:21.3287573Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-16T08:39:21.3287573Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-16T08:39:21.2193709Z","primaryEndpoints":{"dfs":"https://yssa.dfs.core.windows.net/","web":"https://yssa.z13.web.core.windows.net/","blob":"https://yssa.blob.core.windows.net/","queue":"https://yssa.queue.core.windows.net/","table":"https://yssa.table.core.windows.net/","file":"https://yssa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/yufan1","name":"yufan1","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-01-10T08:41:43.1979384Z","key2":"2022-01-10T08:41:43.1979384Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-10T08:41:43.1979384Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-10T08:41:43.1979384Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-10T08:41:43.0729495Z","primaryEndpoints":{"dfs":"https://yufan1.dfs.core.windows.net/","web":"https://yufan1.z13.web.core.windows.net/","blob":"https://yufan1.blob.core.windows.net/","queue":"https://yufan1.queue.core.windows.net/","table":"https://yufan1.table.core.windows.net/","file":"https://yufan1.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yufan1-secondary.dfs.core.windows.net/","web":"https://yufan1-secondary.z13.web.core.windows.net/","blob":"https://yufan1-secondary.blob.core.windows.net/","queue":"https://yufan1-secondary.queue.core.windows.net/","table":"https://yufan1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/yufanaccount","name":"yufanaccount","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-02-19T13:30:24.7349090Z","key2":"2022-02-19T13:30:24.7349090Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-19T13:30:24.7505500Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-19T13:30:24.7505500Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-19T13:30:24.6099071Z","primaryEndpoints":{"dfs":"https://yufanaccount.dfs.core.windows.net/","web":"https://yufanaccount.z13.web.core.windows.net/","blob":"https://yufanaccount.blob.core.windows.net/","queue":"https://yufanaccount.queue.core.windows.net/","table":"https://yufanaccount.table.core.windows.net/","file":"https://yufanaccount.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yufanaccount-secondary.dfs.core.windows.net/","web":"https://yufanaccount-secondary.z13.web.core.windows.net/","blob":"https://yufanaccount-secondary.blob.core.windows.net/","queue":"https://yufanaccount-secondary.queue.core.windows.net/","table":"https://yufanaccount-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/yuzhi123","name":"yuzhi123","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-01-21T07:39:07.9936963Z","key2":"2022-01-21T07:39:07.9936963Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-21T07:39:07.9936963Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-21T07:39:07.9936963Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-21T07:39:07.8530689Z","primaryEndpoints":{"dfs":"https://yuzhi123.dfs.core.windows.net/","web":"https://yuzhi123.z13.web.core.windows.net/","blob":"https://yuzhi123.blob.core.windows.net/","queue":"https://yuzhi123.queue.core.windows.net/","table":"https://yuzhi123.table.core.windows.net/","file":"https://yuzhi123.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yuzhi123-secondary.dfs.core.windows.net/","web":"https://yuzhi123-secondary.z13.web.core.windows.net/","blob":"https://yuzhi123-secondary.blob.core.windows.net/","queue":"https://yuzhi123-secondary.queue.core.windows.net/","table":"https://yuzhi123-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsa","name":"zhiyihuangsa","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-10T05:47:01.2111871Z","key2":"2021-09-10T05:47:01.2111871Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T05:47:01.2111871Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T05:47:01.0861745Z","primaryEndpoints":{"dfs":"https://zhiyihuangsa.dfs.core.windows.net/","web":"https://zhiyihuangsa.z13.web.core.windows.net/","blob":"https://zhiyihuangsa.blob.core.windows.net/","queue":"https://zhiyihuangsa.queue.core.windows.net/","table":"https://zhiyihuangsa.table.core.windows.net/","file":"https://zhiyihuangsa.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsa-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsa-secondary.z13.web.core.windows.net/","blob":"https://zhiyihuangsa-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsa-secondary.queue.core.windows.net/","table":"https://zhiyihuangsa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azextensionedge","name":"azextensionedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-22T08:51:57.7728758Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-22T08:51:57.6947156Z","primaryEndpoints":{"dfs":"https://azextensionedge.dfs.core.windows.net/","web":"https://azextensionedge.z22.web.core.windows.net/","blob":"https://azextensionedge.blob.core.windows.net/","queue":"https://azextensionedge.queue.core.windows.net/","table":"https://azextensionedge.table.core.windows.net/","file":"https://azextensionedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azextensionedge-secondary.dfs.core.windows.net/","web":"https://azextensionedge-secondary.z22.web.core.windows.net/","blob":"https://azextensionedge-secondary.blob.core.windows.net/","queue":"https://azextensionedge-secondary.queue.core.windows.net/","table":"https://azextensionedge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-edge/providers/Microsoft.Storage/storageAccounts/azurecliedge","name":"azurecliedge","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T08:41:36.3326539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-01-13T08:41:36.2389304Z","primaryEndpoints":{"dfs":"https://azurecliedge.dfs.core.windows.net/","web":"https://azurecliedge.z22.web.core.windows.net/","blob":"https://azurecliedge.blob.core.windows.net/","queue":"https://azurecliedge.queue.core.windows.net/","table":"https://azurecliedge.table.core.windows.net/","file":"https://azurecliedge.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgndqcnhtzbgfvywayllmropscysoonfvdiqt3yy2f2owek56fmxotp4xkaed4ctlml/providers/Microsoft.Storage/storageAccounts/clitesthbyb7yke3ybao3eon","name":"clitesthbyb7yke3ybao3eon","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-07T04:18:13.1067632Z","key2":"2022-05-07T04:18:13.1067632Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-07T04:18:13.1067632Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-07T04:18:13.1067632Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-07T04:18:12.9818218Z","primaryEndpoints":{"dfs":"https://clitesthbyb7yke3ybao3eon.dfs.core.windows.net/","web":"https://clitesthbyb7yke3ybao3eon.z22.web.core.windows.net/","blob":"https://clitesthbyb7yke3ybao3eon.blob.core.windows.net/","queue":"https://clitesthbyb7yke3ybao3eon.queue.core.windows.net/","table":"https://clitesthbyb7yke3ybao3eon.table.core.windows.net/","file":"https://clitesthbyb7yke3ybao3eon.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3vcuatamkn4ohekzh7n4dxejiwnu2jwkb3elruui3zxs6wm72xplcabigcfaqgduhl4i/providers/Microsoft.Storage/storageAccounts/clitestutbqsovxkwef67jxo","name":"clitestutbqsovxkwef67jxo","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-11T05:56:09.1774401Z","key2":"2022-05-11T05:56:09.1774401Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T05:56:09.1774401Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T05:56:09.1774401Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-11T05:56:09.0368232Z","primaryEndpoints":{"blob":"https://clitestutbqsovxkwef67jxo.blob.core.windows.net/","queue":"https://clitestutbqsovxkwef67jxo.queue.core.windows.net/","table":"https://clitestutbqsovxkwef67jxo.table.core.windows.net/","file":"https://clitestutbqsovxkwef67jxo.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":{"keyCreationTime":{"key1":"2022-05-11T06:20:36.0907189Z","key2":"2022-05-11T06:20:36.0907189Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T06:20:36.0907189Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T06:20:36.0907189Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-11T06:20:35.9813489Z","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-test-workspace-hfgsgq7lxm59z/providers/Microsoft.Storage/storageAccounts/dbstoragekexnzukbx7wei","name":"dbstoragekexnzukbx7wei","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"application":"databricks","databricks-environment":"true"},"properties":{"keyCreationTime":{"key1":"2022-04-07T21:53:36.5152948Z","key2":"2022-04-07T21:53:36.5152948Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T21:53:36.5152948Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T21:53:36.5152948Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T21:53:36.4059208Z","primaryEndpoints":{"dfs":"https://dbstoragekexnzukbx7wei.dfs.core.windows.net/","blob":"https://dbstoragekexnzukbx7wei.blob.core.windows.net/","table":"https://dbstoragekexnzukbx7wei.table.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/kairu-persist/providers/Microsoft.Storage/storageAccounts/kairu","name":"kairu","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-01-13T07:35:19.0950431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-01-13T07:35:18.9856251Z","primaryEndpoints":{"blob":"https://kairu.blob.core.windows.net/","queue":"https://kairu.queue.core.windows.net/","table":"https://kairu.table.core.windows.net/","file":"https://kairu.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/pythonsdkmsyyc","name":"pythonsdkmsyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-30T09:03:04.8209550Z","key2":"2021-06-30T09:03:04.8209550Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-30T09:03:04.8209550Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-30T09:03:04.7272348Z","primaryEndpoints":{"dfs":"https://pythonsdkmsyyc.dfs.core.windows.net/","web":"https://pythonsdkmsyyc.z22.web.core.windows.net/","blob":"https://pythonsdkmsyyc.blob.core.windows.net/","queue":"https://pythonsdkmsyyc.queue.core.windows.net/","table":"https://pythonsdkmsyyc.table.core.windows.net/","file":"https://pythonsdkmsyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Storage/storageAccounts/storageyyc","name":"storageyyc","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-26T05:53:22.9974267Z","key2":"2021-09-26T05:53:22.9974267Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:53:22.9974267Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:53:22.9192578Z","primaryEndpoints":{"dfs":"https://storageyyc.dfs.core.windows.net/","web":"https://storageyyc.z22.web.core.windows.net/","blob":"https://storageyyc.blob.core.windows.net/","queue":"https://storageyyc.queue.core.windows.net/","table":"https://storageyyc.table.core.windows.net/","file":"https://storageyyc.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw","name":"testalw","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":3,"state":"Disabled"}},"keyCreationTime":{"key1":"2021-10-27T06:27:50.3554138Z","key2":"2021-10-27T06:27:50.3554138Z"},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw/privateEndpointConnections/testalw.cefd3d56-feb9-4be9-978b-fb9416daa1ab","name":"testalw.cefd3d56-feb9-4be9-978b-fb9416daa1ab","type":"Microsoft.Storage/storageAccounts/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Network/privateEndpoints/testpe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionRequired":"None"}}}],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T06:27:50.3554138Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T06:27:50.2616355Z","primaryEndpoints":{"dfs":"https://testalw.dfs.core.windows.net/","web":"https://testalw.z22.web.core.windows.net/","blob":"https://testalw.blob.core.windows.net/","queue":"https://testalw.queue.core.windows.net/","table":"https://testalw.table.core.windows.net/","file":"https://testalw.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw-secondary.dfs.core.windows.net/","web":"https://testalw-secondary.z22.web.core.windows.net/","blob":"https://testalw-secondary.blob.core.windows.net/","queue":"https://testalw-secondary.queue.core.windows.net/","table":"https://testalw-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1027","name":"testalw1027","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-27T07:34:49.7592232Z","key2":"2021-10-27T07:34:49.7592232Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-27T07:34:49.7592232Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-27T07:34:49.6810731Z","primaryEndpoints":{"dfs":"https://testalw1027.dfs.core.windows.net/","web":"https://testalw1027.z22.web.core.windows.net/","blob":"https://testalw1027.blob.core.windows.net/","queue":"https://testalw1027.queue.core.windows.net/","table":"https://testalw1027.table.core.windows.net/","file":"https://testalw1027.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1027-secondary.dfs.core.windows.net/","web":"https://testalw1027-secondary.z22.web.core.windows.net/","blob":"https://testalw1027-secondary.blob.core.windows.net/","queue":"https://testalw1027-secondary.queue.core.windows.net/","table":"https://testalw1027-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/testalw1028","name":"testalw1028","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true,"immutabilityPolicy":{"immutabilityPeriodSinceCreationInDays":1,"state":"Unlocked"}},"keyCreationTime":{"key1":"2021-10-28T01:49:10.2414505Z","key2":"2021-10-28T01:49:10.2414505Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T01:49:10.2414505Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T01:49:10.1633042Z","primaryEndpoints":{"dfs":"https://testalw1028.dfs.core.windows.net/","web":"https://testalw1028.z22.web.core.windows.net/","blob":"https://testalw1028.blob.core.windows.net/","queue":"https://testalw1028.queue.core.windows.net/","table":"https://testalw1028.table.core.windows.net/","file":"https://testalw1028.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testalw1028-secondary.dfs.core.windows.net/","web":"https://testalw1028-secondary.z22.web.core.windows.net/","blob":"https://testalw1028-secondary.blob.core.windows.net/","queue":"https://testalw1028-secondary.queue.core.windows.net/","table":"https://testalw1028-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yshns","name":"yshns","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T02:10:28.4103368Z","key2":"2021-10-15T02:10:28.4103368Z"},"privateEndpointConnections":[],"hnsOnMigrationInProgress":false,"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T02:10:28.4103368Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T02:10:28.3165819Z","primaryEndpoints":{"dfs":"https://yshns.dfs.core.windows.net/","web":"https://yshns.z22.web.core.windows.net/","blob":"https://yshns.blob.core.windows.net/","queue":"https://yshns.queue.core.windows.net/","table":"https://yshns.table.core.windows.net/","file":"https://yshns.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available","secondaryLocation":"eastus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://yshns-secondary.dfs.core.windows.net/","web":"https://yshns-secondary.z22.web.core.windows.net/","blob":"https://yshns-secondary.blob.core.windows.net/","queue":"https://yshns-secondary.queue.core.windows.net/","table":"https://yshns-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/azuresdktest","name":"azuresdktest","type":"Microsoft.Storage/storageAccounts","location":"eastasia","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-08-12T06:32:07.1157877Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-08-12T06:32:07.0689199Z","primaryEndpoints":{"dfs":"https://azuresdktest.dfs.core.windows.net/","web":"https://azuresdktest.z7.web.core.windows.net/","blob":"https://azuresdktest.blob.core.windows.net/","queue":"https://azuresdktest.queue.core.windows.net/","table":"https://azuresdktest.table.core.windows.net/","file":"https://azuresdktest.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.rggrglkh7zr7/providers/Microsoft.Storage/storageAccounts/clitest2f63bh43aix4wcnlh","name":"clitest2f63bh43aix4wcnlh","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.5541453Z","key2":"2021-04-22T08:17:38.5541453Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.5541453Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.4760163Z","primaryEndpoints":{"blob":"https://clitest2f63bh43aix4wcnlh.blob.core.windows.net/","queue":"https://clitest2f63bh43aix4wcnlh.queue.core.windows.net/","table":"https://clitest2f63bh43aix4wcnlh.table.core.windows.net/","file":"https://clitest2f63bh43aix4wcnlh.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrli6qx2bll/providers/Microsoft.Storage/storageAccounts/clitest2kskuzyfvkqd7xx4y","name":"clitest2kskuzyfvkqd7xx4y","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T23:34:08.0367829Z","key2":"2022-03-16T23:34:08.0367829Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T23:34:08.0367829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T23:34:08.0367829Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-16T23:34:07.9430240Z","primaryEndpoints":{"blob":"https://clitest2kskuzyfvkqd7xx4y.blob.core.windows.net/","queue":"https://clitest2kskuzyfvkqd7xx4y.queue.core.windows.net/","table":"https://clitest2kskuzyfvkqd7xx4y.table.core.windows.net/","file":"https://clitest2kskuzyfvkqd7xx4y.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgh5duq2f6uh/providers/Microsoft.Storage/storageAccounts/clitest2vjedutxs37ymp4ni","name":"clitest2vjedutxs37ymp4ni","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0424866Z","key2":"2021-04-23T07:13:21.0424866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0581083Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9643257Z","primaryEndpoints":{"blob":"https://clitest2vjedutxs37ymp4ni.blob.core.windows.net/","queue":"https://clitest2vjedutxs37ymp4ni.queue.core.windows.net/","table":"https://clitest2vjedutxs37ymp4ni.table.core.windows.net/","file":"https://clitest2vjedutxs37ymp4ni.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgl6l3rg6atb/providers/Microsoft.Storage/storageAccounts/clitest4sjmiwke5nz3f67pu","name":"clitest4sjmiwke5nz3f67pu","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.3305055Z","key2":"2021-04-22T08:02:15.3305055Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.3305055Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.2523305Z","primaryEndpoints":{"blob":"https://clitest4sjmiwke5nz3f67pu.blob.core.windows.net/","queue":"https://clitest4sjmiwke5nz3f67pu.queue.core.windows.net/","table":"https://clitest4sjmiwke5nz3f67pu.table.core.windows.net/","file":"https://clitest4sjmiwke5nz3f67pu.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest5frikrzhxwryrkfel","name":"clitest5frikrzhxwryrkfel","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:19:22.9620171Z","key2":"2021-04-22T08:19:22.9620171Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:19:22.9776721Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:19:22.8838883Z","primaryEndpoints":{"blob":"https://clitest5frikrzhxwryrkfel.blob.core.windows.net/","queue":"https://clitest5frikrzhxwryrkfel.queue.core.windows.net/","table":"https://clitest5frikrzhxwryrkfel.table.core.windows.net/","file":"https://clitest5frikrzhxwryrkfel.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrc4sjsrzt4/providers/Microsoft.Storage/storageAccounts/clitest63b5vtkhuf7auho6z","name":"clitest63b5vtkhuf7auho6z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.3198561Z","key2":"2021-04-22T08:17:38.3198561Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.3198561Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.2416459Z","primaryEndpoints":{"blob":"https://clitest63b5vtkhuf7auho6z.blob.core.windows.net/","queue":"https://clitest63b5vtkhuf7auho6z.queue.core.windows.net/","table":"https://clitest63b5vtkhuf7auho6z.table.core.windows.net/","file":"https://clitest63b5vtkhuf7auho6z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgekim5ct43n/providers/Microsoft.Storage/storageAccounts/clitest6jusqp4qvczw52pql","name":"clitest6jusqp4qvczw52pql","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:05:08.7847684Z","key2":"2021-04-22T08:05:08.7847684Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:05:08.8003328Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:05:08.7065579Z","primaryEndpoints":{"blob":"https://clitest6jusqp4qvczw52pql.blob.core.windows.net/","queue":"https://clitest6jusqp4qvczw52pql.queue.core.windows.net/","table":"https://clitest6jusqp4qvczw52pql.table.core.windows.net/","file":"https://clitest6jusqp4qvczw52pql.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbbt37xr2le/providers/Microsoft.Storage/storageAccounts/clitest74vl6rwuxl5fbuklw","name":"clitest74vl6rwuxl5fbuklw","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.2260082Z","key2":"2021-04-22T08:17:38.2260082Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.2260082Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.1635154Z","primaryEndpoints":{"blob":"https://clitest74vl6rwuxl5fbuklw.blob.core.windows.net/","queue":"https://clitest74vl6rwuxl5fbuklw.queue.core.windows.net/","table":"https://clitest74vl6rwuxl5fbuklw.table.core.windows.net/","file":"https://clitest74vl6rwuxl5fbuklw.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgy6swh3vebl/providers/Microsoft.Storage/storageAccounts/clitestaxq4uhxp4axa3uagg","name":"clitestaxq4uhxp4axa3uagg","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-10T05:18:34.9019274Z","key2":"2021-12-10T05:18:34.9019274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-10T05:18:34.9175551Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-10T05:18:34.9175551Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-10T05:18:34.8238281Z","primaryEndpoints":{"blob":"https://clitestaxq4uhxp4axa3uagg.blob.core.windows.net/","queue":"https://clitestaxq4uhxp4axa3uagg.queue.core.windows.net/","table":"https://clitestaxq4uhxp4axa3uagg.table.core.windows.net/","file":"https://clitestaxq4uhxp4axa3uagg.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiudkrkxpl4/providers/Microsoft.Storage/storageAccounts/clitestbiegaggvgwivkqyyi","name":"clitestbiegaggvgwivkqyyi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.8705764Z","key2":"2021-04-23T07:13:20.8705764Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.8861995Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.7925187Z","primaryEndpoints":{"blob":"https://clitestbiegaggvgwivkqyyi.blob.core.windows.net/","queue":"https://clitestbiegaggvgwivkqyyi.queue.core.windows.net/","table":"https://clitestbiegaggvgwivkqyyi.table.core.windows.net/","file":"https://clitestbiegaggvgwivkqyyi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg46ia57tmnz/providers/Microsoft.Storage/storageAccounts/clitestdlxtp24ycnjl3jui2","name":"clitestdlxtp24ycnjl3jui2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.3217696Z","key2":"2021-04-23T03:42:54.3217696Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.3217696Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.2436164Z","primaryEndpoints":{"blob":"https://clitestdlxtp24ycnjl3jui2.blob.core.windows.net/","queue":"https://clitestdlxtp24ycnjl3jui2.queue.core.windows.net/","table":"https://clitestdlxtp24ycnjl3jui2.table.core.windows.net/","file":"https://clitestdlxtp24ycnjl3jui2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23akmjlz2r/providers/Microsoft.Storage/storageAccounts/clitestdmmxq6bklh35yongi","name":"clitestdmmxq6bklh35yongi","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.6966074Z","key2":"2021-08-05T19:49:04.6966074Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.6966074Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.6185933Z","primaryEndpoints":{"blob":"https://clitestdmmxq6bklh35yongi.blob.core.windows.net/","queue":"https://clitestdmmxq6bklh35yongi.queue.core.windows.net/","table":"https://clitestdmmxq6bklh35yongi.table.core.windows.net/","file":"https://clitestdmmxq6bklh35yongi.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgv3m577d7ho/providers/Microsoft.Storage/storageAccounts/clitestej2fvhoj3zogyp5e7","name":"clitestej2fvhoj3zogyp5e7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:42:54.7279926Z","key2":"2021-04-23T03:42:54.7279926Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:42:54.7279926Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:42:54.6342444Z","primaryEndpoints":{"blob":"https://clitestej2fvhoj3zogyp5e7.blob.core.windows.net/","queue":"https://clitestej2fvhoj3zogyp5e7.queue.core.windows.net/","table":"https://clitestej2fvhoj3zogyp5e7.table.core.windows.net/","file":"https://clitestej2fvhoj3zogyp5e7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgp6ikwpcsq7/providers/Microsoft.Storage/storageAccounts/clitestggvkyebv5o55dhakj","name":"clitestggvkyebv5o55dhakj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.2300019Z","key2":"2021-04-23T07:13:21.2300019Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.2456239Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:21.1518492Z","primaryEndpoints":{"blob":"https://clitestggvkyebv5o55dhakj.blob.core.windows.net/","queue":"https://clitestggvkyebv5o55dhakj.queue.core.windows.net/","table":"https://clitestggvkyebv5o55dhakj.table.core.windows.net/","file":"https://clitestggvkyebv5o55dhakj.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn6glpfa25c/providers/Microsoft.Storage/storageAccounts/clitestgt3fjzabc7taya5zo","name":"clitestgt3fjzabc7taya5zo","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6675009Z","key2":"2021-04-23T07:13:20.6675009Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6831653Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.5894204Z","primaryEndpoints":{"blob":"https://clitestgt3fjzabc7taya5zo.blob.core.windows.net/","queue":"https://clitestgt3fjzabc7taya5zo.queue.core.windows.net/","table":"https://clitestgt3fjzabc7taya5zo.table.core.windows.net/","file":"https://clitestgt3fjzabc7taya5zo.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgptzwacrnwa/providers/Microsoft.Storage/storageAccounts/clitestivtrt5tp624n63ast","name":"clitestivtrt5tp624n63ast","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:17:38.1166795Z","key2":"2021-04-22T08:17:38.1166795Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:17:38.1166795Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:17:38.0541529Z","primaryEndpoints":{"blob":"https://clitestivtrt5tp624n63ast.blob.core.windows.net/","queue":"https://clitestivtrt5tp624n63ast.queue.core.windows.net/","table":"https://clitestivtrt5tp624n63ast.table.core.windows.net/","file":"https://clitestivtrt5tp624n63ast.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgaz5eufnx7d/providers/Microsoft.Storage/storageAccounts/clitestkj3e2bodztqdfqsa2","name":"clitestkj3e2bodztqdfqsa2","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-08T09:02:59.1361396Z","key2":"2021-12-08T09:02:59.1361396Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-08T09:02:59.1361396Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-08T09:02:59.1361396Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-08T09:02:59.0267650Z","primaryEndpoints":{"blob":"https://clitestkj3e2bodztqdfqsa2.blob.core.windows.net/","queue":"https://clitestkj3e2bodztqdfqsa2.queue.core.windows.net/","table":"https://clitestkj3e2bodztqdfqsa2.table.core.windows.net/","file":"https://clitestkj3e2bodztqdfqsa2.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeghfcmpfiw/providers/Microsoft.Storage/storageAccounts/clitestkoxtfkf67yodgckyb","name":"clitestkoxtfkf67yodgckyb","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-28T10:04:35.2504002Z","key2":"2022-02-28T10:04:35.2504002Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T10:04:35.2504002Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T10:04:35.2504002Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-02-28T10:04:35.1410179Z","primaryEndpoints":{"blob":"https://clitestkoxtfkf67yodgckyb.blob.core.windows.net/","queue":"https://clitestkoxtfkf67yodgckyb.queue.core.windows.net/","table":"https://clitestkoxtfkf67yodgckyb.table.core.windows.net/","file":"https://clitestkoxtfkf67yodgckyb.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdc25pvki6m/providers/Microsoft.Storage/storageAccounts/clitestkxu4ahsqaxv42cyyf","name":"clitestkxu4ahsqaxv42cyyf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-22T08:02:15.7523496Z","key2":"2021-04-22T08:02:15.7523496Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-22T08:02:15.7523496Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-22T08:02:15.6742355Z","primaryEndpoints":{"blob":"https://clitestkxu4ahsqaxv42cyyf.blob.core.windows.net/","queue":"https://clitestkxu4ahsqaxv42cyyf.queue.core.windows.net/","table":"https://clitestkxu4ahsqaxv42cyyf.table.core.windows.net/","file":"https://clitestkxu4ahsqaxv42cyyf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgawbqkye7l4/providers/Microsoft.Storage/storageAccounts/clitestlsjx67ujuhjr7zkah","name":"clitestlsjx67ujuhjr7zkah","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-09T04:30:23.0266730Z","key2":"2022-05-09T04:30:23.0266730Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-09T04:30:23.0266730Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-09T04:30:23.0266730Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-09T04:30:22.9172929Z","primaryEndpoints":{"blob":"https://clitestlsjx67ujuhjr7zkah.blob.core.windows.net/","queue":"https://clitestlsjx67ujuhjr7zkah.queue.core.windows.net/","table":"https://clitestlsjx67ujuhjr7zkah.table.core.windows.net/","file":"https://clitestlsjx67ujuhjr7zkah.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4chnkoo7ql/providers/Microsoft.Storage/storageAccounts/clitestmevgvn7p2e7ydqz44","name":"clitestmevgvn7p2e7ydqz44","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-08T03:32:22.3716191Z","key2":"2021-12-08T03:32:22.3716191Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-08T03:32:22.3872332Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-08T03:32:22.3872332Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-08T03:32:22.2778291Z","primaryEndpoints":{"blob":"https://clitestmevgvn7p2e7ydqz44.blob.core.windows.net/","queue":"https://clitestmevgvn7p2e7ydqz44.queue.core.windows.net/","table":"https://clitestmevgvn7p2e7ydqz44.table.core.windows.net/","file":"https://clitestmevgvn7p2e7ydqz44.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgghkyqf7pb5/providers/Microsoft.Storage/storageAccounts/clitestpuea6vlqwxw6ihiws","name":"clitestpuea6vlqwxw6ihiws","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0581083Z","key2":"2021-04-23T07:13:21.0581083Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0737014Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9799581Z","primaryEndpoints":{"blob":"https://clitestpuea6vlqwxw6ihiws.blob.core.windows.net/","queue":"https://clitestpuea6vlqwxw6ihiws.queue.core.windows.net/","table":"https://clitestpuea6vlqwxw6ihiws.table.core.windows.net/","file":"https://clitestpuea6vlqwxw6ihiws.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbo2ure7pgp/providers/Microsoft.Storage/storageAccounts/clitestsnv7joygpazk23npj","name":"clitestsnv7joygpazk23npj","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-21T02:19:20.7474327Z","key2":"2021-05-21T02:19:20.7474327Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-21T02:19:20.7474327Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-21T02:19:20.6537267Z","primaryEndpoints":{"blob":"https://clitestsnv7joygpazk23npj.blob.core.windows.net/","queue":"https://clitestsnv7joygpazk23npj.queue.core.windows.net/","table":"https://clitestsnv7joygpazk23npj.table.core.windows.net/","file":"https://clitestsnv7joygpazk23npj.file.core.windows.net/"},"primaryLocation":"southeastasia","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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgu7jwflzo6g/providers/Microsoft.Storage/storageAccounts/clitestwqzjytdeun46rphfd","name":"clitestwqzjytdeun46rphfd","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T03:44:35.3668592Z","key2":"2021-04-23T03:44:35.3668592Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T03:44:35.3668592Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T03:44:35.2887580Z","primaryEndpoints":{"blob":"https://clitestwqzjytdeun46rphfd.blob.core.windows.net/","queue":"https://clitestwqzjytdeun46rphfd.queue.core.windows.net/","table":"https://clitestwqzjytdeun46rphfd.table.core.windows.net/","file":"https://clitestwqzjytdeun46rphfd.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgltfej7yr4u/providers/Microsoft.Storage/storageAccounts/clitestwvsg2uskf4i7vjfto","name":"clitestwvsg2uskf4i7vjfto","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-05-13T07:48:30.9247776Z","key2":"2021-05-13T07:48:30.9247776Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-13T07:48:30.9403727Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-05-13T07:48:30.8309682Z","primaryEndpoints":{"blob":"https://clitestwvsg2uskf4i7vjfto.blob.core.windows.net/","queue":"https://clitestwvsg2uskf4i7vjfto.queue.core.windows.net/","table":"https://clitestwvsg2uskf4i7vjfto.table.core.windows.net/","file":"https://clitestwvsg2uskf4i7vjfto.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzjznhcqaoh/providers/Microsoft.Storage/storageAccounts/clitestwznnmnfot33xjztmk","name":"clitestwznnmnfot33xjztmk","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.7299628Z","key2":"2021-04-23T07:13:20.7299628Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.7456181Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6518776Z","primaryEndpoints":{"blob":"https://clitestwznnmnfot33xjztmk.blob.core.windows.net/","queue":"https://clitestwznnmnfot33xjztmk.queue.core.windows.net/","table":"https://clitestwznnmnfot33xjztmk.table.core.windows.net/","file":"https://clitestwznnmnfot33xjztmk.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4yns4yxisb/providers/Microsoft.Storage/storageAccounts/clitestyt6rxgad3kebqzh26","name":"clitestyt6rxgad3kebqzh26","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-05T19:49:04.8528440Z","key2":"2021-08-05T19:49:04.8528440Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-05T19:49:04.8528440Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-05T19:49:04.7747435Z","primaryEndpoints":{"blob":"https://clitestyt6rxgad3kebqzh26.blob.core.windows.net/","queue":"https://clitestyt6rxgad3kebqzh26.queue.core.windows.net/","table":"https://clitestyt6rxgad3kebqzh26.table.core.windows.net/","file":"https://clitestyt6rxgad3kebqzh26.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgovptfsocfg/providers/Microsoft.Storage/storageAccounts/clitestz72bbbbv2cio2pmom","name":"clitestz72bbbbv2cio2pmom","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:21.0112600Z","key2":"2021-04-23T07:13:21.0112600Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:21.0268549Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.9330720Z","primaryEndpoints":{"blob":"https://clitestz72bbbbv2cio2pmom.blob.core.windows.net/","queue":"https://clitestz72bbbbv2cio2pmom.queue.core.windows.net/","table":"https://clitestz72bbbbv2cio2pmom.table.core.windows.net/","file":"https://clitestz72bbbbv2cio2pmom.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxp7uwuibs5/providers/Microsoft.Storage/storageAccounts/clitestzrwidkqplnw3jmz4z","name":"clitestzrwidkqplnw3jmz4z","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-23T07:13:20.6831653Z","key2":"2021-04-23T07:13:20.6831653Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-23T07:13:20.6987004Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-23T07:13:20.6049571Z","primaryEndpoints":{"blob":"https://clitestzrwidkqplnw3jmz4z.blob.core.windows.net/","queue":"https://clitestzrwidkqplnw3jmz4z.queue.core.windows.net/","table":"https://clitestzrwidkqplnw3jmz4z.table.core.windows.net/","file":"https://clitestzrwidkqplnw3jmz4z.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320004dd89524","name":"cs1100320004dd89524","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-26T05:48:15.7013062Z","key2":"2021-03-26T05:48:15.7013062Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-26T05:48:15.7169621Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-26T05:48:15.6545059Z","primaryEndpoints":{"dfs":"https://cs1100320004dd89524.dfs.core.windows.net/","web":"https://cs1100320004dd89524.z23.web.core.windows.net/","blob":"https://cs1100320004dd89524.blob.core.windows.net/","queue":"https://cs1100320004dd89524.queue.core.windows.net/","table":"https://cs1100320004dd89524.table.core.windows.net/","file":"https://cs1100320004dd89524.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320005416c8c9","name":"cs1100320005416c8c9","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-09T05:58:20.1898753Z","key2":"2021-07-09T05:58:20.1898753Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-09T05:58:20.2055665Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-09T05:58:20.0961322Z","primaryEndpoints":{"dfs":"https://cs1100320005416c8c9.dfs.core.windows.net/","web":"https://cs1100320005416c8c9.z23.web.core.windows.net/","blob":"https://cs1100320005416c8c9.blob.core.windows.net/","queue":"https://cs1100320005416c8c9.queue.core.windows.net/","table":"https://cs1100320005416c8c9.table.core.windows.net/","file":"https://cs1100320005416c8c9.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007b1ce356","name":"cs1100320007b1ce356","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-31T13:56:10.5497663Z","key2":"2021-08-31T13:56:10.5497663Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T13:56:10.5497663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T13:56:10.4560533Z","primaryEndpoints":{"dfs":"https://cs1100320007b1ce356.dfs.core.windows.net/","web":"https://cs1100320007b1ce356.z23.web.core.windows.net/","blob":"https://cs1100320007b1ce356.blob.core.windows.net/","queue":"https://cs1100320007b1ce356.queue.core.windows.net/","table":"https://cs1100320007b1ce356.table.core.windows.net/","file":"https://cs1100320007b1ce356.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs1100320007de01867","name":"cs1100320007de01867","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-25T03:24:00.9959166Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-25T03:24:00.9490326Z","primaryEndpoints":{"dfs":"https://cs1100320007de01867.dfs.core.windows.net/","web":"https://cs1100320007de01867.z23.web.core.windows.net/","blob":"https://cs1100320007de01867.blob.core.windows.net/","queue":"https://cs1100320007de01867.queue.core.windows.net/","table":"https://cs1100320007de01867.table.core.windows.net/","file":"https://cs1100320007de01867.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320007f91393f","name":"cs1100320007f91393f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-01-22T18:02:15.3088372Z","key2":"2022-01-22T18:02:15.3088372Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-22T18:02:15.3088372Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-22T18:02:15.3088372Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-22T18:02:15.1681915Z","primaryEndpoints":{"dfs":"https://cs1100320007f91393f.dfs.core.windows.net/","web":"https://cs1100320007f91393f.z23.web.core.windows.net/","blob":"https://cs1100320007f91393f.blob.core.windows.net/","queue":"https://cs1100320007f91393f.queue.core.windows.net/","table":"https://cs1100320007f91393f.table.core.windows.net/","file":"https://cs1100320007f91393f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200087c55daf","name":"cs11003200087c55daf","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-21T00:43:24.0011691Z","key2":"2021-07-21T00:43:24.0011691Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-21T00:43:24.0011691Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-21T00:43:23.9230250Z","primaryEndpoints":{"dfs":"https://cs11003200087c55daf.dfs.core.windows.net/","web":"https://cs11003200087c55daf.z23.web.core.windows.net/","blob":"https://cs11003200087c55daf.blob.core.windows.net/","queue":"https://cs11003200087c55daf.queue.core.windows.net/","table":"https://cs11003200087c55daf.table.core.windows.net/","file":"https://cs11003200087c55daf.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320008debd5bc","name":"cs1100320008debd5bc","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-17T07:12:44.1132341Z","key2":"2021-03-17T07:12:44.1132341Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-17T07:12:44.1132341Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-17T07:12:44.0351358Z","primaryEndpoints":{"dfs":"https://cs1100320008debd5bc.dfs.core.windows.net/","web":"https://cs1100320008debd5bc.z23.web.core.windows.net/","blob":"https://cs1100320008debd5bc.blob.core.windows.net/","queue":"https://cs1100320008debd5bc.queue.core.windows.net/","table":"https://cs1100320008debd5bc.table.core.windows.net/","file":"https://cs1100320008debd5bc.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000919ef7c5","name":"cs110032000919ef7c5","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-09T02:02:43.1652268Z","key2":"2021-10-09T02:02:43.1652268Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-09T02:02:43.1652268Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-09T02:02:43.0714900Z","primaryEndpoints":{"dfs":"https://cs110032000919ef7c5.dfs.core.windows.net/","web":"https://cs110032000919ef7c5.z23.web.core.windows.net/","blob":"https://cs110032000919ef7c5.blob.core.windows.net/","queue":"https://cs110032000919ef7c5.queue.core.windows.net/","table":"https://cs110032000919ef7c5.table.core.windows.net/","file":"https://cs110032000919ef7c5.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200092fe0771","name":"cs11003200092fe0771","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-23T07:08:51.1436686Z","key2":"2021-03-23T07:08:51.1436686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-23T07:08:51.1593202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-23T07:08:51.0811120Z","primaryEndpoints":{"dfs":"https://cs11003200092fe0771.dfs.core.windows.net/","web":"https://cs11003200092fe0771.z23.web.core.windows.net/","blob":"https://cs11003200092fe0771.blob.core.windows.net/","queue":"https://cs11003200092fe0771.queue.core.windows.net/","table":"https://cs11003200092fe0771.table.core.windows.net/","file":"https://cs11003200092fe0771.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000b6f3c90c","name":"cs110032000b6f3c90c","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-06T05:28:23.2493456Z","key2":"2021-05-06T05:28:23.2493456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-06T05:28:23.2493456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-06T05:28:23.1868245Z","primaryEndpoints":{"dfs":"https://cs110032000b6f3c90c.dfs.core.windows.net/","web":"https://cs110032000b6f3c90c.z23.web.core.windows.net/","blob":"https://cs110032000b6f3c90c.blob.core.windows.net/","queue":"https://cs110032000b6f3c90c.queue.core.windows.net/","table":"https://cs110032000b6f3c90c.table.core.windows.net/","file":"https://cs110032000b6f3c90c.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000c31bae71","name":"cs110032000c31bae71","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-15T06:39:35.4649198Z","key2":"2021-04-15T06:39:35.4649198Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:39:35.4649198Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-15T06:39:35.4180004Z","primaryEndpoints":{"dfs":"https://cs110032000c31bae71.dfs.core.windows.net/","web":"https://cs110032000c31bae71.z23.web.core.windows.net/","blob":"https://cs110032000c31bae71.blob.core.windows.net/","queue":"https://cs110032000c31bae71.queue.core.windows.net/","table":"https://cs110032000c31bae71.table.core.windows.net/","file":"https://cs110032000c31bae71.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureSDKTest_reserved/providers/Microsoft.Storage/storageAccounts/cs110032000ca62af00","name":"cs110032000ca62af00","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-22T02:06:18.4998653Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-09-22T02:06:18.4217109Z","primaryEndpoints":{"dfs":"https://cs110032000ca62af00.dfs.core.windows.net/","web":"https://cs110032000ca62af00.z23.web.core.windows.net/","blob":"https://cs110032000ca62af00.blob.core.windows.net/","queue":"https://cs110032000ca62af00.queue.core.windows.net/","table":"https://cs110032000ca62af00.table.core.windows.net/","file":"https://cs110032000ca62af00.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e1cb9f41","name":"cs110032000e1cb9f41","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-06-01T02:14:02.8985613Z","key2":"2021-06-01T02:14:02.8985613Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-01T02:14:02.9140912Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-01T02:14:02.8047066Z","primaryEndpoints":{"dfs":"https://cs110032000e1cb9f41.dfs.core.windows.net/","web":"https://cs110032000e1cb9f41.z23.web.core.windows.net/","blob":"https://cs110032000e1cb9f41.blob.core.windows.net/","queue":"https://cs110032000e1cb9f41.queue.core.windows.net/","table":"https://cs110032000e1cb9f41.table.core.windows.net/","file":"https://cs110032000e1cb9f41.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000e3121978","name":"cs110032000e3121978","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-25T07:26:43.6124221Z","key2":"2021-04-25T07:26:43.6124221Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-25T07:26:43.6124221Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-25T07:26:43.5343583Z","primaryEndpoints":{"dfs":"https://cs110032000e3121978.dfs.core.windows.net/","web":"https://cs110032000e3121978.z23.web.core.windows.net/","blob":"https://cs110032000e3121978.blob.core.windows.net/","queue":"https://cs110032000e3121978.queue.core.windows.net/","table":"https://cs110032000e3121978.table.core.windows.net/","file":"https://cs110032000e3121978.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032000f3aac891","name":"cs110032000f3aac891","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-10-08T11:18:17.0122606Z","key2":"2021-10-08T11:18:17.0122606Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-08T11:18:17.0122606Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-08T11:18:16.9184856Z","primaryEndpoints":{"dfs":"https://cs110032000f3aac891.dfs.core.windows.net/","web":"https://cs110032000f3aac891.z23.web.core.windows.net/","blob":"https://cs110032000f3aac891.blob.core.windows.net/","queue":"https://cs110032000f3aac891.queue.core.windows.net/","table":"https://cs110032000f3aac891.table.core.windows.net/","file":"https://cs110032000f3aac891.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320010339dce7","name":"cs1100320010339dce7","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-07-01T12:55:31.1442388Z","key2":"2021-07-01T12:55:31.1442388Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-01T12:55:31.1442388Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-01T12:55:31.0661165Z","primaryEndpoints":{"dfs":"https://cs1100320010339dce7.dfs.core.windows.net/","web":"https://cs1100320010339dce7.z23.web.core.windows.net/","blob":"https://cs1100320010339dce7.blob.core.windows.net/","queue":"https://cs1100320010339dce7.queue.core.windows.net/","table":"https://cs1100320010339dce7.table.core.windows.net/","file":"https://cs1100320010339dce7.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200127365c47","name":"cs11003200127365c47","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-03-25T03:10:52.6098894Z","key2":"2021-03-25T03:10:52.6098894Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-25T03:10:52.6098894Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-25T03:10:52.5318146Z","primaryEndpoints":{"dfs":"https://cs11003200127365c47.dfs.core.windows.net/","web":"https://cs11003200127365c47.z23.web.core.windows.net/","blob":"https://cs11003200127365c47.blob.core.windows.net/","queue":"https://cs11003200127365c47.queue.core.windows.net/","table":"https://cs11003200127365c47.table.core.windows.net/","file":"https://cs11003200127365c47.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs11003200129e38348","name":"cs11003200129e38348","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-05-24T06:59:16.3135399Z","key2":"2021-05-24T06:59:16.3135399Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-05-24T06:59:16.3135399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-05-24T06:59:16.2198282Z","primaryEndpoints":{"dfs":"https://cs11003200129e38348.dfs.core.windows.net/","web":"https://cs11003200129e38348.z23.web.core.windows.net/","blob":"https://cs11003200129e38348.blob.core.windows.net/","queue":"https://cs11003200129e38348.queue.core.windows.net/","table":"https://cs11003200129e38348.table.core.windows.net/","file":"https://cs11003200129e38348.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320012c36c452","name":"cs1100320012c36c452","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-04-09T08:04:25.5979407Z","key2":"2021-04-09T08:04:25.5979407Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-09T08:04:25.5979407Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-09T08:04:25.5198295Z","primaryEndpoints":{"dfs":"https://cs1100320012c36c452.dfs.core.windows.net/","web":"https://cs1100320012c36c452.z23.web.core.windows.net/","blob":"https://cs1100320012c36c452.blob.core.windows.net/","queue":"https://cs1100320012c36c452.queue.core.windows.net/","table":"https://cs1100320012c36c452.table.core.windows.net/","file":"https://cs1100320012c36c452.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001520b2764","name":"cs110032001520b2764","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-09-03T08:56:46.2009376Z","key2":"2021-09-03T08:56:46.2009376Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T08:56:46.2009376Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T08:56:46.1071770Z","primaryEndpoints":{"dfs":"https://cs110032001520b2764.dfs.core.windows.net/","web":"https://cs110032001520b2764.z23.web.core.windows.net/","blob":"https://cs110032001520b2764.blob.core.windows.net/","queue":"https://cs110032001520b2764.queue.core.windows.net/","table":"https://cs110032001520b2764.table.core.windows.net/","file":"https://cs110032001520b2764.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320016ac59291","name":"cs1100320016ac59291","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-08-10T06:12:25.7518719Z","key2":"2021-08-10T06:12:25.7518719Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-10T06:12:25.7518719Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-10T06:12:25.6581170Z","primaryEndpoints":{"dfs":"https://cs1100320016ac59291.dfs.core.windows.net/","web":"https://cs1100320016ac59291.z23.web.core.windows.net/","blob":"https://cs1100320016ac59291.blob.core.windows.net/","queue":"https://cs1100320016ac59291.queue.core.windows.net/","table":"https://cs1100320016ac59291.table.core.windows.net/","file":"https://cs1100320016ac59291.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018cedbbd6","name":"cs1100320018cedbbd6","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-11-02T06:32:13.4022120Z","key2":"2021-11-02T06:32:13.4022120Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T06:32:13.4022120Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T06:32:13.3084745Z","primaryEndpoints":{"dfs":"https://cs1100320018cedbbd6.dfs.core.windows.net/","web":"https://cs1100320018cedbbd6.z23.web.core.windows.net/","blob":"https://cs1100320018cedbbd6.blob.core.windows.net/","queue":"https://cs1100320018cedbbd6.queue.core.windows.net/","table":"https://cs1100320018cedbbd6.table.core.windows.net/","file":"https://cs1100320018cedbbd6.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs1100320018db36b92","name":"cs1100320018db36b92","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-03-28T03:36:34.2370202Z","key2":"2022-03-28T03:36:34.2370202Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-28T03:36:34.2370202Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-28T03:36:34.2370202Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-28T03:36:34.1432960Z","primaryEndpoints":{"dfs":"https://cs1100320018db36b92.dfs.core.windows.net/","web":"https://cs1100320018db36b92.z23.web.core.windows.net/","blob":"https://cs1100320018db36b92.blob.core.windows.net/","queue":"https://cs1100320018db36b92.queue.core.windows.net/","table":"https://cs1100320018db36b92.table.core.windows.net/","file":"https://cs1100320018db36b92.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b3f915f1","name":"cs110032001b3f915f1","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-12-01T09:52:15.5623314Z","key2":"2021-12-01T09:52:15.5623314Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-01T09:52:15.5623314Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-01T09:52:15.5623314Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-01T09:52:15.4529548Z","primaryEndpoints":{"dfs":"https://cs110032001b3f915f1.dfs.core.windows.net/","web":"https://cs110032001b3f915f1.z23.web.core.windows.net/","blob":"https://cs110032001b3f915f1.blob.core.windows.net/","queue":"https://cs110032001b3f915f1.queue.core.windows.net/","table":"https://cs110032001b3f915f1.table.core.windows.net/","file":"https://cs110032001b3f915f1.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b429e302","name":"cs110032001b429e302","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-03-03T08:36:37.1925814Z","key2":"2022-03-03T08:36:37.1925814Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T08:36:37.1925814Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T08:36:37.1925814Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T08:36:37.0989854Z","primaryEndpoints":{"dfs":"https://cs110032001b429e302.dfs.core.windows.net/","web":"https://cs110032001b429e302.z23.web.core.windows.net/","blob":"https://cs110032001b429e302.blob.core.windows.net/","queue":"https://cs110032001b429e302.queue.core.windows.net/","table":"https://cs110032001b429e302.table.core.windows.net/","file":"https://cs110032001b429e302.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001b42c9a19","name":"cs110032001b42c9a19","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-12-07T06:17:44.4758914Z","key2":"2021-12-07T06:17:44.4758914Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-07T06:17:44.4915329Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-07T06:17:44.4915329Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-07T06:17:44.3665152Z","primaryEndpoints":{"dfs":"https://cs110032001b42c9a19.dfs.core.windows.net/","web":"https://cs110032001b42c9a19.z23.web.core.windows.net/","blob":"https://cs110032001b42c9a19.blob.core.windows.net/","queue":"https://cs110032001b42c9a19.queue.core.windows.net/","table":"https://cs110032001b42c9a19.table.core.windows.net/","file":"https://cs110032001b42c9a19.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001c7af275f","name":"cs110032001c7af275f","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-01-11T02:46:33.2282076Z","key2":"2022-01-11T02:46:33.2282076Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-11T02:46:33.2438448Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-11T02:46:33.2438448Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-11T02:46:33.1190309Z","primaryEndpoints":{"dfs":"https://cs110032001c7af275f.dfs.core.windows.net/","web":"https://cs110032001c7af275f.z23.web.core.windows.net/","blob":"https://cs110032001c7af275f.blob.core.windows.net/","queue":"https://cs110032001c7af275f.queue.core.windows.net/","table":"https://cs110032001c7af275f.table.core.windows.net/","file":"https://cs110032001c7af275f.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cloud-shell-storage-southeastasia/providers/Microsoft.Storage/storageAccounts/cs110032001d33a7d6b","name":"cs110032001d33a7d6b","type":"Microsoft.Storage/storageAccounts","location":"southeastasia","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-03-23T09:31:11.8736695Z","key2":"2022-03-23T09:31:11.8736695Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-23T09:31:11.8736695Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-23T09:31:11.8736695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-23T09:31:11.7641980Z","primaryEndpoints":{"dfs":"https://cs110032001d33a7d6b.dfs.core.windows.net/","web":"https://cs110032001d33a7d6b.z23.web.core.windows.net/","blob":"https://cs110032001d33a7d6b.blob.core.windows.net/","queue":"https://cs110032001d33a7d6b.queue.core.windows.net/","table":"https://cs110032001d33a7d6b.table.core.windows.net/","file":"https://cs110032001d33a7d6b.file.core.windows.net/"},"primaryLocation":"southeastasia","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-feng-purview/providers/Microsoft.Storage/storageAccounts/scansouthcentralusdteqbx","name":"scansouthcentralusdteqbx","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-23T06:00:34.2251607Z","key2":"2021-09-23T06:00:34.2251607Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-23T06:00:34.2251607Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-23T06:00:34.1313540Z","primaryEndpoints":{"dfs":"https://scansouthcentralusdteqbx.dfs.core.windows.net/","web":"https://scansouthcentralusdteqbx.z21.web.core.windows.net/","blob":"https://scansouthcentralusdteqbx.blob.core.windows.net/","queue":"https://scansouthcentralusdteqbx.queue.core.windows.net/","table":"https://scansouthcentralusdteqbx.table.core.windows.net/","file":"https://scansouthcentralusdteqbx.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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":"2021-05-14T06:47:20.1106748Z","key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/feng-cli-rg/providers/Microsoft.Storage/storageAccounts/fengtestsa","name":"fengtestsa","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-10-29T03:10:28.7204355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-10-29T03:10:28.6266623Z","primaryEndpoints":{"dfs":"https://fengtestsa.dfs.core.windows.net/","web":"https://fengtestsa.z19.web.core.windows.net/","blob":"https://fengtestsa.blob.core.windows.net/","queue":"https://fengtestsa.queue.core.windows.net/","table":"https://fengtestsa.table.core.windows.net/","file":"https://fengtestsa.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available","secondaryLocation":"eastus2","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://fengtestsa-secondary.dfs.core.windows.net/","web":"https://fengtestsa-secondary.z19.web.core.windows.net/","blob":"https://fengtestsa-secondary.blob.core.windows.net/","queue":"https://fengtestsa-secondary.queue.core.windows.net/","table":"https://fengtestsa-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/storagesfrepro1","name":"storagesfrepro1","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_acctestRG-ibt-24_acctest-IBT-0710-2_4ebedb5a-e3b1-4675-aa4c-3c160fe70907/providers/Microsoft.Storage/storageAccounts/6ynst8ytvcms52eviy9cme3e","name":"6ynst8ytvcms52eviy9cme3e","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{"createdby":"azureimagebuilder","magicvalue":"0d819542a3774a2a8709401a7cd09eb8"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-10T11:43:30.0119558Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-07-10T11:43:29.9651518Z","primaryEndpoints":{"blob":"https://6ynst8ytvcms52eviy9cme3e.blob.core.windows.net/","queue":"https://6ynst8ytvcms52eviy9cme3e.queue.core.windows.net/","table":"https://6ynst8ytvcms52eviy9cme3e.table.core.windows.net/","file":"https://6ynst8ytvcms52eviy9cme3e.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/managed-rg-fypurview/providers/Microsoft.Storage/storageAccounts/scanwestus2ghwdfbf","name":"scanwestus2ghwdfbf","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T03:24:36.3735480Z","key2":"2021-09-28T03:24:36.3735480Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T03:24:36.3891539Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T03:24:36.2797988Z","primaryEndpoints":{"dfs":"https://scanwestus2ghwdfbf.dfs.core.windows.net/","web":"https://scanwestus2ghwdfbf.z5.web.core.windows.net/","blob":"https://scanwestus2ghwdfbf.blob.core.windows.net/","queue":"https://scanwestus2ghwdfbf.queue.core.windows.net/","table":"https://scanwestus2ghwdfbf.table.core.windows.net/","file":"https://scanwestus2ghwdfbf.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azure-cli-test-file-handle-rg/providers/Microsoft.Storage/storageAccounts/testfilehandlesa","name":"testfilehandlesa","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-11-02T02:22:24.9147695Z","key2":"2021-11-02T02:22:24.9147695Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-02T02:22:24.9147695Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-02T02:22:24.8209748Z","primaryEndpoints":{"dfs":"https://testfilehandlesa.dfs.core.windows.net/","web":"https://testfilehandlesa.z5.web.core.windows.net/","blob":"https://testfilehandlesa.blob.core.windows.net/","queue":"https://testfilehandlesa.queue.core.windows.net/","table":"https://testfilehandlesa.table.core.windows.net/","file":"https://testfilehandlesa.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testfilehandlesa-secondary.dfs.core.windows.net/","web":"https://testfilehandlesa-secondary.z5.web.core.windows.net/","blob":"https://testfilehandlesa-secondary.blob.core.windows.net/","queue":"https://testfilehandlesa-secondary.queue.core.windows.net/","table":"https://testfilehandlesa-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk3dgx6acfu6yrvvipseyqbiwldnaohcywhpi65w7jys42kv5gjs2pljpz5o7bsoah/providers/Microsoft.Storage/storageAccounts/clitest3tllg4jqytzq27ejk","name":"clitest3tllg4jqytzq27ejk","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:36:53.0876733Z","key2":"2021-11-01T19:36:53.0876733Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:36:53.0876733Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:36:53.0095332Z","primaryEndpoints":{"dfs":"https://clitest3tllg4jqytzq27ejk.dfs.core.windows.net/","web":"https://clitest3tllg4jqytzq27ejk.z3.web.core.windows.net/","blob":"https://clitest3tllg4jqytzq27ejk.blob.core.windows.net/","queue":"https://clitest3tllg4jqytzq27ejk.queue.core.windows.net/","table":"https://clitest3tllg4jqytzq27ejk.table.core.windows.net/","file":"https://clitest3tllg4jqytzq27ejk.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7ywcjwwkyqro7r54bzsggg3efujfc54tpvg3pmzto2wg3ifd5i2omb2oqz4ru44b3/providers/Microsoft.Storage/storageAccounts/clitest42lr3sjjyceqm2dsa","name":"clitest42lr3sjjyceqm2dsa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-11T14:04:08.6091074Z","key2":"2022-04-11T14:04:08.6091074Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:04:08.6248156Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:04:08.6248156Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:04:08.5153865Z","primaryEndpoints":{"dfs":"https://clitest42lr3sjjyceqm2dsa.dfs.core.windows.net/","web":"https://clitest42lr3sjjyceqm2dsa.z3.web.core.windows.net/","blob":"https://clitest42lr3sjjyceqm2dsa.blob.core.windows.net/","queue":"https://clitest42lr3sjjyceqm2dsa.queue.core.windows.net/","table":"https://clitest42lr3sjjyceqm2dsa.table.core.windows.net/","file":"https://clitest42lr3sjjyceqm2dsa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkgt6nin66or5swlkcbzuqqqvuatsme4t5spkwkygh4sziqlamyxv2fckdajclbire/providers/Microsoft.Storage/storageAccounts/clitest4hsuf3zwslxuux46y","name":"clitest4hsuf3zwslxuux46y","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T09:25:04.0198418Z","key2":"2022-03-16T09:25:04.0198418Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:25:04.0354560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:25:04.0354560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:25:03.8948335Z","primaryEndpoints":{"dfs":"https://clitest4hsuf3zwslxuux46y.dfs.core.windows.net/","web":"https://clitest4hsuf3zwslxuux46y.z3.web.core.windows.net/","blob":"https://clitest4hsuf3zwslxuux46y.blob.core.windows.net/","queue":"https://clitest4hsuf3zwslxuux46y.queue.core.windows.net/","table":"https://clitest4hsuf3zwslxuux46y.table.core.windows.net/","file":"https://clitest4hsuf3zwslxuux46y.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5rbhj2siyn33fb3buqv4nfrpbtszdqvkeyymdjvwdzj2tgg6z5ig5v4fsnlngl6zy/providers/Microsoft.Storage/storageAccounts/clitest4k6c57bhb3fbeaeb2","name":"clitest4k6c57bhb3fbeaeb2","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-02T23:19:47.3184925Z","key2":"2021-12-02T23:19:47.3184925Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:19:47.3184925Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:19:47.3184925Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:19:47.2247436Z","primaryEndpoints":{"dfs":"https://clitest4k6c57bhb3fbeaeb2.dfs.core.windows.net/","web":"https://clitest4k6c57bhb3fbeaeb2.z3.web.core.windows.net/","blob":"https://clitest4k6c57bhb3fbeaeb2.blob.core.windows.net/","queue":"https://clitest4k6c57bhb3fbeaeb2.queue.core.windows.net/","table":"https://clitest4k6c57bhb3fbeaeb2.table.core.windows.net/","file":"https://clitest4k6c57bhb3fbeaeb2.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgllxoprxwjouhrzsd4vrfhqkpy7ft2fwgtiub56wonkmtvsogumww7h36czdisqqxm/providers/Microsoft.Storage/storageAccounts/clitest4slutm4qduocdiy7o","name":"clitest4slutm4qduocdiy7o","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:17:57.1095774Z","key2":"2021-11-18T23:17:57.1095774Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:57.1252046Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:57.0471042Z","primaryEndpoints":{"dfs":"https://clitest4slutm4qduocdiy7o.dfs.core.windows.net/","web":"https://clitest4slutm4qduocdiy7o.z3.web.core.windows.net/","blob":"https://clitest4slutm4qduocdiy7o.blob.core.windows.net/","queue":"https://clitest4slutm4qduocdiy7o.queue.core.windows.net/","table":"https://clitest4slutm4qduocdiy7o.table.core.windows.net/","file":"https://clitest4slutm4qduocdiy7o.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkqf4cu665yaejvrvcvhfklfoep7xw2qhgk7q5qkmosqpcdypz6aubtjovadrpefmu/providers/Microsoft.Storage/storageAccounts/clitest4ypv67tuvo34umfu5","name":"clitest4ypv67tuvo34umfu5","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-27T08:37:30.4318022Z","key2":"2021-09-27T08:37:30.4318022Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-27T08:37:30.4474578Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-27T08:37:30.3536782Z","primaryEndpoints":{"dfs":"https://clitest4ypv67tuvo34umfu5.dfs.core.windows.net/","web":"https://clitest4ypv67tuvo34umfu5.z3.web.core.windows.net/","blob":"https://clitest4ypv67tuvo34umfu5.blob.core.windows.net/","queue":"https://clitest4ypv67tuvo34umfu5.queue.core.windows.net/","table":"https://clitest4ypv67tuvo34umfu5.table.core.windows.net/","file":"https://clitest4ypv67tuvo34umfu5.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdug325lrcvzanqv3lzbjf3is3c3nkte77zapxydbwac3gjkwncn6mb4f7ac5quodl/providers/Microsoft.Storage/storageAccounts/clitest52hhfb76nrue6ykoz","name":"clitest52hhfb76nrue6ykoz","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T01:18:06.6255130Z","key2":"2022-03-18T01:18:06.6255130Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:18:06.6255130Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:18:06.6255130Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:18:06.5317315Z","primaryEndpoints":{"dfs":"https://clitest52hhfb76nrue6ykoz.dfs.core.windows.net/","web":"https://clitest52hhfb76nrue6ykoz.z3.web.core.windows.net/","blob":"https://clitest52hhfb76nrue6ykoz.blob.core.windows.net/","queue":"https://clitest52hhfb76nrue6ykoz.queue.core.windows.net/","table":"https://clitest52hhfb76nrue6ykoz.table.core.windows.net/","file":"https://clitest52hhfb76nrue6ykoz.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglsqzig6e5xb6f6yy7vcn6ga3cecladn475k3busnwddg7bekcbznawxwrs2fzwqsg/providers/Microsoft.Storage/storageAccounts/clitest5em3dvci6rx26joqq","name":"clitest5em3dvci6rx26joqq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-23T22:13:15.3267815Z","key2":"2021-12-23T22:13:15.3267815Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:13:15.3267815Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:13:15.3267815Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:13:15.2330713Z","primaryEndpoints":{"dfs":"https://clitest5em3dvci6rx26joqq.dfs.core.windows.net/","web":"https://clitest5em3dvci6rx26joqq.z3.web.core.windows.net/","blob":"https://clitest5em3dvci6rx26joqq.blob.core.windows.net/","queue":"https://clitest5em3dvci6rx26joqq.queue.core.windows.net/","table":"https://clitest5em3dvci6rx26joqq.table.core.windows.net/","file":"https://clitest5em3dvci6rx26joqq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgq5owppg4dci2qdrj7vzc5jfe2wkpqdndt73aoulpqbpqyme4ys6qp5yegc6x72nfg/providers/Microsoft.Storage/storageAccounts/clitest6xc3bnyzkpbv277hw","name":"clitest6xc3bnyzkpbv277hw","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-03T23:21:13.3577773Z","key2":"2022-03-03T23:21:13.3577773Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:21:13.3733610Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:21:13.3733610Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:21:13.2640292Z","primaryEndpoints":{"dfs":"https://clitest6xc3bnyzkpbv277hw.dfs.core.windows.net/","web":"https://clitest6xc3bnyzkpbv277hw.z3.web.core.windows.net/","blob":"https://clitest6xc3bnyzkpbv277hw.blob.core.windows.net/","queue":"https://clitest6xc3bnyzkpbv277hw.queue.core.windows.net/","table":"https://clitest6xc3bnyzkpbv277hw.table.core.windows.net/","file":"https://clitest6xc3bnyzkpbv277hw.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgvricmqr6tftghdb2orhfvwwflb5yrmjlbbxfre27xo56m3yaowwocmuew3mkp6dch/providers/Microsoft.Storage/storageAccounts/clitesta6vvdbwzccmdhnmh7","name":"clitesta6vvdbwzccmdhnmh7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-10T23:46:41.0268928Z","key2":"2022-03-10T23:46:41.0268928Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-10T23:46:41.0425154Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-10T23:46:41.0425154Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-10T23:46:40.9331185Z","primaryEndpoints":{"dfs":"https://clitesta6vvdbwzccmdhnmh7.dfs.core.windows.net/","web":"https://clitesta6vvdbwzccmdhnmh7.z3.web.core.windows.net/","blob":"https://clitesta6vvdbwzccmdhnmh7.blob.core.windows.net/","queue":"https://clitesta6vvdbwzccmdhnmh7.queue.core.windows.net/","table":"https://clitesta6vvdbwzccmdhnmh7.table.core.windows.net/","file":"https://clitesta6vvdbwzccmdhnmh7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgefj7prpkkfwowsohocdcgln4afkr36ayb7msfujq5xbxbhzxt6nl6226d6wpfd2v6/providers/Microsoft.Storage/storageAccounts/clitestajyrm6yrgbf4c5i2s","name":"clitestajyrm6yrgbf4c5i2s","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:36:26.5400357Z","key2":"2021-09-26T05:36:26.5400357Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:36:26.5400357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:36:26.4619069Z","primaryEndpoints":{"dfs":"https://clitestajyrm6yrgbf4c5i2s.dfs.core.windows.net/","web":"https://clitestajyrm6yrgbf4c5i2s.z3.web.core.windows.net/","blob":"https://clitestajyrm6yrgbf4c5i2s.blob.core.windows.net/","queue":"https://clitestajyrm6yrgbf4c5i2s.queue.core.windows.net/","table":"https://clitestajyrm6yrgbf4c5i2s.table.core.windows.net/","file":"https://clitestajyrm6yrgbf4c5i2s.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgdj7xp7djs6mthgx5vg7frkzob6fa4r4ee6jyrvgncvnjvn36lppo6bqbxzdz75tll/providers/Microsoft.Storage/storageAccounts/clitestb3umzlekxb2476otp","name":"clitestb3umzlekxb2476otp","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-21T23:03:50.2317299Z","key2":"2022-04-21T23:03:50.2317299Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:03:50.2317299Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:03:50.2317299Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:03:50.1379870Z","primaryEndpoints":{"dfs":"https://clitestb3umzlekxb2476otp.dfs.core.windows.net/","web":"https://clitestb3umzlekxb2476otp.z3.web.core.windows.net/","blob":"https://clitestb3umzlekxb2476otp.blob.core.windows.net/","queue":"https://clitestb3umzlekxb2476otp.queue.core.windows.net/","table":"https://clitestb3umzlekxb2476otp.table.core.windows.net/","file":"https://clitestb3umzlekxb2476otp.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglbpqpmgzjcfuaz4feleprn435rcjy72gfcclbzlno6zqjglg4vmjeekjfwp5ftczi/providers/Microsoft.Storage/storageAccounts/clitestbokalj4mocrwa4z32","name":"clitestbokalj4mocrwa4z32","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:30:16.8234389Z","key2":"2021-10-29T22:30:16.8234389Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:30:16.8234389Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:30:16.7453107Z","primaryEndpoints":{"dfs":"https://clitestbokalj4mocrwa4z32.dfs.core.windows.net/","web":"https://clitestbokalj4mocrwa4z32.z3.web.core.windows.net/","blob":"https://clitestbokalj4mocrwa4z32.blob.core.windows.net/","queue":"https://clitestbokalj4mocrwa4z32.queue.core.windows.net/","table":"https://clitestbokalj4mocrwa4z32.table.core.windows.net/","file":"https://clitestbokalj4mocrwa4z32.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtspw4qvairmgdzy7n5rmnqkgvofttquawuj4gqd2vfu4vovezcfc7sf547caizzrh/providers/Microsoft.Storage/storageAccounts/clitestbsembxlqwsnj2fgge","name":"clitestbsembxlqwsnj2fgge","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-07T22:55:33.1867654Z","key2":"2022-04-07T22:55:33.1867654Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T22:55:33.2023896Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T22:55:33.2023896Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T22:55:33.0930101Z","primaryEndpoints":{"dfs":"https://clitestbsembxlqwsnj2fgge.dfs.core.windows.net/","web":"https://clitestbsembxlqwsnj2fgge.z3.web.core.windows.net/","blob":"https://clitestbsembxlqwsnj2fgge.blob.core.windows.net/","queue":"https://clitestbsembxlqwsnj2fgge.queue.core.windows.net/","table":"https://clitestbsembxlqwsnj2fgge.table.core.windows.net/","file":"https://clitestbsembxlqwsnj2fgge.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgslmenloyni5hf6ungu5xnok6xazrqmqukr6gorcq64rq2u7hadght6uvzpmpbpg3u/providers/Microsoft.Storage/storageAccounts/clitestcw54yeqtizanybuwo","name":"clitestcw54yeqtizanybuwo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-14T23:27:19.9861627Z","key2":"2022-04-14T23:27:19.9861627Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0017698Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0017698Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:27:19.8923715Z","primaryEndpoints":{"dfs":"https://clitestcw54yeqtizanybuwo.dfs.core.windows.net/","web":"https://clitestcw54yeqtizanybuwo.z3.web.core.windows.net/","blob":"https://clitestcw54yeqtizanybuwo.blob.core.windows.net/","queue":"https://clitestcw54yeqtizanybuwo.queue.core.windows.net/","table":"https://clitestcw54yeqtizanybuwo.table.core.windows.net/","file":"https://clitestcw54yeqtizanybuwo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzqoxctlppqseceswyeq36zau2eysrbugzmir6vxpsztoivt4atecrszzqgzpvjalj/providers/Microsoft.Storage/storageAccounts/clitestexazhooj6txsp4bif","name":"clitestexazhooj6txsp4bif","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:28:55.7862697Z","key2":"2021-09-26T06:28:55.7862697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:28:55.8018954Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:28:55.7237634Z","primaryEndpoints":{"dfs":"https://clitestexazhooj6txsp4bif.dfs.core.windows.net/","web":"https://clitestexazhooj6txsp4bif.z3.web.core.windows.net/","blob":"https://clitestexazhooj6txsp4bif.blob.core.windows.net/","queue":"https://clitestexazhooj6txsp4bif.queue.core.windows.net/","table":"https://clitestexazhooj6txsp4bif.table.core.windows.net/","file":"https://clitestexazhooj6txsp4bif.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgastf744wty5rbe3b42dtbtj6m3u4njqshp3uezxwhayjl4gumhvlnx4umngpnd37j/providers/Microsoft.Storage/storageAccounts/clitestfoxs5cndjzuwfbysg","name":"clitestfoxs5cndjzuwfbysg","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T05:29:08.4012945Z","key2":"2022-03-16T05:29:08.4012945Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:29:08.4012945Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:29:08.4012945Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:29:08.3076366Z","primaryEndpoints":{"dfs":"https://clitestfoxs5cndjzuwfbysg.dfs.core.windows.net/","web":"https://clitestfoxs5cndjzuwfbysg.z3.web.core.windows.net/","blob":"https://clitestfoxs5cndjzuwfbysg.blob.core.windows.net/","queue":"https://clitestfoxs5cndjzuwfbysg.queue.core.windows.net/","table":"https://clitestfoxs5cndjzuwfbysg.table.core.windows.net/","file":"https://clitestfoxs5cndjzuwfbysg.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqgjamsip45eiod37k5ava3icxn6g65gkuyffmj7fd2ipic36deyjqhzs5f5amepjw/providers/Microsoft.Storage/storageAccounts/clitestfseuqgiqhdcp3ufhh","name":"clitestfseuqgiqhdcp3ufhh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-16T23:43:04.7242746Z","key2":"2021-12-16T23:43:04.7242746Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:43:04.7242746Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:43:04.7242746Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:43:04.6461064Z","primaryEndpoints":{"dfs":"https://clitestfseuqgiqhdcp3ufhh.dfs.core.windows.net/","web":"https://clitestfseuqgiqhdcp3ufhh.z3.web.core.windows.net/","blob":"https://clitestfseuqgiqhdcp3ufhh.blob.core.windows.net/","queue":"https://clitestfseuqgiqhdcp3ufhh.queue.core.windows.net/","table":"https://clitestfseuqgiqhdcp3ufhh.table.core.windows.net/","file":"https://clitestfseuqgiqhdcp3ufhh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4bazn4hnlcnsaasp63k6nvrlmtkyo7dqcjkyopsehticnihafl57ntorbz7ixqwos/providers/Microsoft.Storage/storageAccounts/clitestgnremsz2uxbgdy6uo","name":"clitestgnremsz2uxbgdy6uo","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:33:08.0149596Z","key2":"2021-11-05T08:33:08.0149596Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:33:08.0305829Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:33:07.9368092Z","primaryEndpoints":{"dfs":"https://clitestgnremsz2uxbgdy6uo.dfs.core.windows.net/","web":"https://clitestgnremsz2uxbgdy6uo.z3.web.core.windows.net/","blob":"https://clitestgnremsz2uxbgdy6uo.blob.core.windows.net/","queue":"https://clitestgnremsz2uxbgdy6uo.queue.core.windows.net/","table":"https://clitestgnremsz2uxbgdy6uo.table.core.windows.net/","file":"https://clitestgnremsz2uxbgdy6uo.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiojjcuhfzayzrer4xt3xelo5irqyhos7zzodnkr36kccmj3tkike4hj2z333kq54w/providers/Microsoft.Storage/storageAccounts/clitestgzh5gtd7dvvavu4r7","name":"clitestgzh5gtd7dvvavu4r7","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-24T23:41:39.2992459Z","key2":"2022-03-24T23:41:39.2992459Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:41:39.3148704Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:41:39.3148704Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:41:39.2057201Z","primaryEndpoints":{"dfs":"https://clitestgzh5gtd7dvvavu4r7.dfs.core.windows.net/","web":"https://clitestgzh5gtd7dvvavu4r7.z3.web.core.windows.net/","blob":"https://clitestgzh5gtd7dvvavu4r7.blob.core.windows.net/","queue":"https://clitestgzh5gtd7dvvavu4r7.queue.core.windows.net/","table":"https://clitestgzh5gtd7dvvavu4r7.table.core.windows.net/","file":"https://clitestgzh5gtd7dvvavu4r7.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgn2hrmou3vupc7hxv534r6ythn2qz6v45svfb666d75bigid4v562yvcrcu3zvopvd/providers/Microsoft.Storage/storageAccounts/clitesthn6lf7bmqfq4lihgr","name":"clitesthn6lf7bmqfq4lihgr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:36:25.4655609Z","key2":"2021-10-22T23:36:25.4655609Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:36:25.4655609Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:36:25.4186532Z","primaryEndpoints":{"dfs":"https://clitesthn6lf7bmqfq4lihgr.dfs.core.windows.net/","web":"https://clitesthn6lf7bmqfq4lihgr.z3.web.core.windows.net/","blob":"https://clitesthn6lf7bmqfq4lihgr.blob.core.windows.net/","queue":"https://clitesthn6lf7bmqfq4lihgr.queue.core.windows.net/","table":"https://clitesthn6lf7bmqfq4lihgr.table.core.windows.net/","file":"https://clitesthn6lf7bmqfq4lihgr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg3uh3ecchugblssjzzurmbz3fwz3si25txvdhbc3t7jo6zlnbitco2s4mnnjpqst2v/providers/Microsoft.Storage/storageAccounts/clitestif7zaqb3uji3nhacq","name":"clitestif7zaqb3uji3nhacq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-26T08:48:10.2092425Z","key2":"2022-04-26T08:48:10.2092425Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:48:10.2092425Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:48:10.2092425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:48:10.0998779Z","primaryEndpoints":{"dfs":"https://clitestif7zaqb3uji3nhacq.dfs.core.windows.net/","web":"https://clitestif7zaqb3uji3nhacq.z3.web.core.windows.net/","blob":"https://clitestif7zaqb3uji3nhacq.blob.core.windows.net/","queue":"https://clitestif7zaqb3uji3nhacq.queue.core.windows.net/","table":"https://clitestif7zaqb3uji3nhacq.table.core.windows.net/","file":"https://clitestif7zaqb3uji3nhacq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgddpmpp3buqip4f3ztkpw2okh4vd5lblxcs36olwlxmrn6hqzkgms3jgye5t72fahh/providers/Microsoft.Storage/storageAccounts/clitestlp7xyjhqdanlvdk7l","name":"clitestlp7xyjhqdanlvdk7l","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-30T22:32:05.3181693Z","key2":"2021-12-30T22:32:05.3181693Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:32:05.3181693Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:32:05.3181693Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:32:05.2244193Z","primaryEndpoints":{"dfs":"https://clitestlp7xyjhqdanlvdk7l.dfs.core.windows.net/","web":"https://clitestlp7xyjhqdanlvdk7l.z3.web.core.windows.net/","blob":"https://clitestlp7xyjhqdanlvdk7l.blob.core.windows.net/","queue":"https://clitestlp7xyjhqdanlvdk7l.queue.core.windows.net/","table":"https://clitestlp7xyjhqdanlvdk7l.table.core.windows.net/","file":"https://clitestlp7xyjhqdanlvdk7l.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgiqgpdt6kvdporvteyacy5t5zw43gekna5gephtplex4buchsqnucjh24ke6ian63g/providers/Microsoft.Storage/storageAccounts/clitestlpnuh5cbq4gzlb4mt","name":"clitestlpnuh5cbq4gzlb4mt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T21:40:23.1450434Z","key2":"2022-03-17T21:40:23.1450434Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T21:40:23.1606676Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T21:40:23.1606676Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T21:40:23.0669136Z","primaryEndpoints":{"dfs":"https://clitestlpnuh5cbq4gzlb4mt.dfs.core.windows.net/","web":"https://clitestlpnuh5cbq4gzlb4mt.z3.web.core.windows.net/","blob":"https://clitestlpnuh5cbq4gzlb4mt.blob.core.windows.net/","queue":"https://clitestlpnuh5cbq4gzlb4mt.queue.core.windows.net/","table":"https://clitestlpnuh5cbq4gzlb4mt.table.core.windows.net/","file":"https://clitestlpnuh5cbq4gzlb4mt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rggyyky3pdv7kfgca2zw6tt2uuyakcfh4mhe5jv652ywkhjplo2g3hkpg5l5vlzmscx/providers/Microsoft.Storage/storageAccounts/clitestlrazz3fr4p7ma2aqu","name":"clitestlrazz3fr4p7ma2aqu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:26:22.0140081Z","key2":"2021-09-26T06:26:22.0140081Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:26:22.0140081Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:26:21.9514992Z","primaryEndpoints":{"dfs":"https://clitestlrazz3fr4p7ma2aqu.dfs.core.windows.net/","web":"https://clitestlrazz3fr4p7ma2aqu.z3.web.core.windows.net/","blob":"https://clitestlrazz3fr4p7ma2aqu.blob.core.windows.net/","queue":"https://clitestlrazz3fr4p7ma2aqu.queue.core.windows.net/","table":"https://clitestlrazz3fr4p7ma2aqu.table.core.windows.net/","file":"https://clitestlrazz3fr4p7ma2aqu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg6wjfol23jdbl2gkdoeiou4nae4tnyxkvqazscvbwkazi5dbugwnwlcr7gn2nvblbz/providers/Microsoft.Storage/storageAccounts/clitestlvmg3eu2v3vfviots","name":"clitestlvmg3eu2v3vfviots","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-25T00:19:23.5149380Z","key2":"2022-02-25T00:19:23.5149380Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:19:23.5305640Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:19:23.5305640Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:19:23.4055624Z","primaryEndpoints":{"dfs":"https://clitestlvmg3eu2v3vfviots.dfs.core.windows.net/","web":"https://clitestlvmg3eu2v3vfviots.z3.web.core.windows.net/","blob":"https://clitestlvmg3eu2v3vfviots.blob.core.windows.net/","queue":"https://clitestlvmg3eu2v3vfviots.queue.core.windows.net/","table":"https://clitestlvmg3eu2v3vfviots.table.core.windows.net/","file":"https://clitestlvmg3eu2v3vfviots.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgibc6w6pt2cu4nkppzr7rhgsrli5jhaumxaexydrvzpemxhixixcac5un3lkhugutn/providers/Microsoft.Storage/storageAccounts/clitestm3o7urdechvnvggxa","name":"clitestm3o7urdechvnvggxa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:04:25.7055241Z","key2":"2021-11-04T22:04:25.7055241Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:04:25.7055241Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:04:25.6274146Z","primaryEndpoints":{"dfs":"https://clitestm3o7urdechvnvggxa.dfs.core.windows.net/","web":"https://clitestm3o7urdechvnvggxa.z3.web.core.windows.net/","blob":"https://clitestm3o7urdechvnvggxa.blob.core.windows.net/","queue":"https://clitestm3o7urdechvnvggxa.queue.core.windows.net/","table":"https://clitestm3o7urdechvnvggxa.table.core.windows.net/","file":"https://clitestm3o7urdechvnvggxa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgod6ukvpdyodfbumzqyctb3mizfldmw7m4kczmcvtiwdw7eknpoq2uxsr3gc5qs6ia/providers/Microsoft.Storage/storageAccounts/clitestmekftj553567izfaa","name":"clitestmekftj553567izfaa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T22:40:57.9850091Z","key2":"2022-03-31T22:40:57.9850091Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:40:58.0006083Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:40:58.0006083Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:40:57.8912800Z","primaryEndpoints":{"dfs":"https://clitestmekftj553567izfaa.dfs.core.windows.net/","web":"https://clitestmekftj553567izfaa.z3.web.core.windows.net/","blob":"https://clitestmekftj553567izfaa.blob.core.windows.net/","queue":"https://clitestmekftj553567izfaa.queue.core.windows.net/","table":"https://clitestmekftj553567izfaa.table.core.windows.net/","file":"https://clitestmekftj553567izfaa.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg5gexz53gwezjaj2k73fecuuc4yqlddops5ntbekppouzb4x7h6bpbyvfme5nlourk/providers/Microsoft.Storage/storageAccounts/clitestmjpad5ax6f4npu3mz","name":"clitestmjpad5ax6f4npu3mz","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T08:55:42.1539279Z","key2":"2022-03-16T08:55:42.1539279Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T08:55:42.1539279Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T08:55:42.1539279Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T08:55:42.0602013Z","primaryEndpoints":{"dfs":"https://clitestmjpad5ax6f4npu3mz.dfs.core.windows.net/","web":"https://clitestmjpad5ax6f4npu3mz.z3.web.core.windows.net/","blob":"https://clitestmjpad5ax6f4npu3mz.blob.core.windows.net/","queue":"https://clitestmjpad5ax6f4npu3mz.queue.core.windows.net/","table":"https://clitestmjpad5ax6f4npu3mz.table.core.windows.net/","file":"https://clitestmjpad5ax6f4npu3mz.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgihpamtetsioehvqhcaizytambbwjq2a4so6iz734ejm7u6prta4pxwcc2gyhhaxqf/providers/Microsoft.Storage/storageAccounts/clitestmyjybsngqmztsnzyt","name":"clitestmyjybsngqmztsnzyt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T05:30:18.6096170Z","key2":"2021-09-26T05:30:18.6096170Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T05:30:18.6096170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T05:30:18.5314899Z","primaryEndpoints":{"dfs":"https://clitestmyjybsngqmztsnzyt.dfs.core.windows.net/","web":"https://clitestmyjybsngqmztsnzyt.z3.web.core.windows.net/","blob":"https://clitestmyjybsngqmztsnzyt.blob.core.windows.net/","queue":"https://clitestmyjybsngqmztsnzyt.queue.core.windows.net/","table":"https://clitestmyjybsngqmztsnzyt.table.core.windows.net/","file":"https://clitestmyjybsngqmztsnzyt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2abywok236kysqgqh6yyxw5hjsmd2oiv7fmmzca4bdkfvsyhup2g3flygvn45gbtp/providers/Microsoft.Storage/storageAccounts/clitestnwqabo3kuhvx6svgt","name":"clitestnwqabo3kuhvx6svgt","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-23T03:42:52.5821333Z","key2":"2022-02-23T03:42:52.5821333Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:42:52.5977587Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:42:52.5977587Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:42:52.4883542Z","primaryEndpoints":{"dfs":"https://clitestnwqabo3kuhvx6svgt.dfs.core.windows.net/","web":"https://clitestnwqabo3kuhvx6svgt.z3.web.core.windows.net/","blob":"https://clitestnwqabo3kuhvx6svgt.blob.core.windows.net/","queue":"https://clitestnwqabo3kuhvx6svgt.queue.core.windows.net/","table":"https://clitestnwqabo3kuhvx6svgt.table.core.windows.net/","file":"https://clitestnwqabo3kuhvx6svgt.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbksbwoy7iftsvok2gu7el6jq32a53l75d3amp4qff74lwqen6nypkv2vsy5qpvdx6/providers/Microsoft.Storage/storageAccounts/clitestnx46jh36sfhiun4zr","name":"clitestnx46jh36sfhiun4zr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:46:06.0337216Z","key2":"2021-09-26T06:46:06.0337216Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:46:06.0337216Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:46:05.9555808Z","primaryEndpoints":{"dfs":"https://clitestnx46jh36sfhiun4zr.dfs.core.windows.net/","web":"https://clitestnx46jh36sfhiun4zr.z3.web.core.windows.net/","blob":"https://clitestnx46jh36sfhiun4zr.blob.core.windows.net/","queue":"https://clitestnx46jh36sfhiun4zr.queue.core.windows.net/","table":"https://clitestnx46jh36sfhiun4zr.table.core.windows.net/","file":"https://clitestnx46jh36sfhiun4zr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg33fo62u6qo54y4oh6ubodzg5drtpqjvfeaxkl7eqcioetepluk6x6j2y26gadsnlb/providers/Microsoft.Storage/storageAccounts/clitestnyptbvai7mjrv4d36","name":"clitestnyptbvai7mjrv4d36","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-26T06:38:37.8872316Z","key2":"2021-09-26T06:38:37.8872316Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-26T06:38:37.8872316Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-26T06:38:37.8247073Z","primaryEndpoints":{"dfs":"https://clitestnyptbvai7mjrv4d36.dfs.core.windows.net/","web":"https://clitestnyptbvai7mjrv4d36.z3.web.core.windows.net/","blob":"https://clitestnyptbvai7mjrv4d36.blob.core.windows.net/","queue":"https://clitestnyptbvai7mjrv4d36.queue.core.windows.net/","table":"https://clitestnyptbvai7mjrv4d36.table.core.windows.net/","file":"https://clitestnyptbvai7mjrv4d36.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgm4ewrfpsmwsfbapbb7k3cslbr34yplftoedawvzwr66vnki7qslc7yxcjg74xcdt4/providers/Microsoft.Storage/storageAccounts/clitestobi4eotlnsa6zh3bq","name":"clitestobi4eotlnsa6zh3bq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T09:39:15.5200077Z","key2":"2022-02-24T09:39:15.5200077Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.5356357Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.5356357Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:39:15.4262587Z","primaryEndpoints":{"dfs":"https://clitestobi4eotlnsa6zh3bq.dfs.core.windows.net/","web":"https://clitestobi4eotlnsa6zh3bq.z3.web.core.windows.net/","blob":"https://clitestobi4eotlnsa6zh3bq.blob.core.windows.net/","queue":"https://clitestobi4eotlnsa6zh3bq.queue.core.windows.net/","table":"https://clitestobi4eotlnsa6zh3bq.table.core.windows.net/","file":"https://clitestobi4eotlnsa6zh3bq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzvfnrnbiodivv7py3ttijdf62ufwz3obvcpzey36zr4h56myn3sajeenb67t2vufx/providers/Microsoft.Storage/storageAccounts/clitestokj67zonpbcy4h3ut","name":"clitestokj67zonpbcy4h3ut","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T13:51:42.3909029Z","key2":"2022-03-17T13:51:42.3909029Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T13:51:42.4065705Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T13:51:42.4065705Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T13:51:42.3127731Z","primaryEndpoints":{"dfs":"https://clitestokj67zonpbcy4h3ut.dfs.core.windows.net/","web":"https://clitestokj67zonpbcy4h3ut.z3.web.core.windows.net/","blob":"https://clitestokj67zonpbcy4h3ut.blob.core.windows.net/","queue":"https://clitestokj67zonpbcy4h3ut.queue.core.windows.net/","table":"https://clitestokj67zonpbcy4h3ut.table.core.windows.net/","file":"https://clitestokj67zonpbcy4h3ut.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg27eecv3qlcw6ol3xvlbfxfoasylnf4kby2jp2xlzkuk3skinkbsynd7fskj5fpsy3/providers/Microsoft.Storage/storageAccounts/clitestonivdoendik6ud5xu","name":"clitestonivdoendik6ud5xu","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T05:25:23.2474815Z","key2":"2021-12-09T05:25:23.2474815Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:25:23.2474815Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:25:23.2474815Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:25:23.1693829Z","primaryEndpoints":{"dfs":"https://clitestonivdoendik6ud5xu.dfs.core.windows.net/","web":"https://clitestonivdoendik6ud5xu.z3.web.core.windows.net/","blob":"https://clitestonivdoendik6ud5xu.blob.core.windows.net/","queue":"https://clitestonivdoendik6ud5xu.queue.core.windows.net/","table":"https://clitestonivdoendik6ud5xu.table.core.windows.net/","file":"https://clitestonivdoendik6ud5xu.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg4g3f5lihvl5ymspqef7wlq3ougtwcl5cysr5hf26ft6qecpqygvuavvpaffm4jp2z/providers/Microsoft.Storage/storageAccounts/clitestppyuah3f63vji25wh","name":"clitestppyuah3f63vji25wh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T22:35:14.8304282Z","key2":"2022-02-24T22:35:14.8304282Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:35:14.8304282Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:35:14.8304282Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:35:14.7210571Z","primaryEndpoints":{"dfs":"https://clitestppyuah3f63vji25wh.dfs.core.windows.net/","web":"https://clitestppyuah3f63vji25wh.z3.web.core.windows.net/","blob":"https://clitestppyuah3f63vji25wh.blob.core.windows.net/","queue":"https://clitestppyuah3f63vji25wh.queue.core.windows.net/","table":"https://clitestppyuah3f63vji25wh.table.core.windows.net/","file":"https://clitestppyuah3f63vji25wh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkxbcxx4ank64f2iixhvgd2jaf76ixz7z6ehcg4wgtoikus5rrg53sdli6a5acuxg7/providers/Microsoft.Storage/storageAccounts/clitestqltbsnaacri7pnm66","name":"clitestqltbsnaacri7pnm66","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-05T23:02:57.0468964Z","key2":"2022-05-05T23:02:57.0468964Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:02:57.0468964Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:02:57.0468964Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:02:56.9375574Z","primaryEndpoints":{"dfs":"https://clitestqltbsnaacri7pnm66.dfs.core.windows.net/","web":"https://clitestqltbsnaacri7pnm66.z3.web.core.windows.net/","blob":"https://clitestqltbsnaacri7pnm66.blob.core.windows.net/","queue":"https://clitestqltbsnaacri7pnm66.queue.core.windows.net/","table":"https://clitestqltbsnaacri7pnm66.table.core.windows.net/","file":"https://clitestqltbsnaacri7pnm66.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgj4euz2qks4a65suw4yg7q66oyuhws64hd3parve3zm7c7l5i636my5smbzk6cbvis/providers/Microsoft.Storage/storageAccounts/cliteststxx2rebwsjj4m7ev","name":"cliteststxx2rebwsjj4m7ev","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-28T22:28:46.3357090Z","key2":"2022-04-28T22:28:46.3357090Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:28:46.3357090Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:28:46.3357090Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:28:46.2419469Z","primaryEndpoints":{"dfs":"https://cliteststxx2rebwsjj4m7ev.dfs.core.windows.net/","web":"https://cliteststxx2rebwsjj4m7ev.z3.web.core.windows.net/","blob":"https://cliteststxx2rebwsjj4m7ev.blob.core.windows.net/","queue":"https://cliteststxx2rebwsjj4m7ev.queue.core.windows.net/","table":"https://cliteststxx2rebwsjj4m7ev.table.core.windows.net/","file":"https://cliteststxx2rebwsjj4m7ev.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg7wjguctbigk256arnwsy5cikne5rtgxsungotn3y3cp7nofxioeys2x7dtiknym2a/providers/Microsoft.Storage/storageAccounts/clitesttayxcfhxj5auoke5a","name":"clitesttayxcfhxj5auoke5a","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T23:16:25.2778969Z","key2":"2021-12-09T23:16:25.2778969Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:16:25.2778969Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:16:25.2778969Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:16:25.1841497Z","primaryEndpoints":{"dfs":"https://clitesttayxcfhxj5auoke5a.dfs.core.windows.net/","web":"https://clitesttayxcfhxj5auoke5a.z3.web.core.windows.net/","blob":"https://clitesttayxcfhxj5auoke5a.blob.core.windows.net/","queue":"https://clitesttayxcfhxj5auoke5a.queue.core.windows.net/","table":"https://clitesttayxcfhxj5auoke5a.table.core.windows.net/","file":"https://clitesttayxcfhxj5auoke5a.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxg4uxlys7uvmy36zktg7bufluyydw6zodvea3sscatxtoca52rp53hzgpu7gq5p7s/providers/Microsoft.Storage/storageAccounts/clitesttychkmvzofjn5oztq","name":"clitesttychkmvzofjn5oztq","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-26T08:46:40.5509904Z","key2":"2022-04-26T08:46:40.5509904Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:46:40.5509904Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:46:40.5509904Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:46:40.4415826Z","primaryEndpoints":{"dfs":"https://clitesttychkmvzofjn5oztq.dfs.core.windows.net/","web":"https://clitesttychkmvzofjn5oztq.z3.web.core.windows.net/","blob":"https://clitesttychkmvzofjn5oztq.blob.core.windows.net/","queue":"https://clitesttychkmvzofjn5oztq.queue.core.windows.net/","table":"https://clitesttychkmvzofjn5oztq.table.core.windows.net/","file":"https://clitesttychkmvzofjn5oztq.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg7tywk7mx4oyp34pr4jo76jp54xi6rrmofingxkdmix2bxupdaavsgm5bscdon7hb/providers/Microsoft.Storage/storageAccounts/clitestupama2samndokm3jd","name":"clitestupama2samndokm3jd","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-28T16:48:18.7645760Z","key2":"2022-02-28T16:48:18.7645760Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T16:48:18.7802324Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T16:48:18.7802324Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T16:48:18.6864732Z","primaryEndpoints":{"dfs":"https://clitestupama2samndokm3jd.dfs.core.windows.net/","web":"https://clitestupama2samndokm3jd.z3.web.core.windows.net/","blob":"https://clitestupama2samndokm3jd.blob.core.windows.net/","queue":"https://clitestupama2samndokm3jd.queue.core.windows.net/","table":"https://clitestupama2samndokm3jd.table.core.windows.net/","file":"https://clitestupama2samndokm3jd.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglqgc5xdku5ojvlcdmxmxwx4otzrvmtvwkizs74vqyuovzqgtxbocao3wxuey3ckyg/providers/Microsoft.Storage/storageAccounts/clitestvkt5uhqkknoz4z2ps","name":"clitestvkt5uhqkknoz4z2ps","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T15:56:12.2012021Z","key2":"2021-10-22T15:56:12.2012021Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T15:56:12.2012021Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T15:56:12.1387094Z","primaryEndpoints":{"dfs":"https://clitestvkt5uhqkknoz4z2ps.dfs.core.windows.net/","web":"https://clitestvkt5uhqkknoz4z2ps.z3.web.core.windows.net/","blob":"https://clitestvkt5uhqkknoz4z2ps.blob.core.windows.net/","queue":"https://clitestvkt5uhqkknoz4z2ps.queue.core.windows.net/","table":"https://clitestvkt5uhqkknoz4z2ps.table.core.windows.net/","file":"https://clitestvkt5uhqkknoz4z2ps.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgb6aglzjbgktmouuijj6dzlic4zxyiyz3rvpkaagcnysqv5336hn4e4fogwqavf53q/providers/Microsoft.Storage/storageAccounts/clitestvlciwxue3ibitylva","name":"clitestvlciwxue3ibitylva","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-07T00:11:03.4133197Z","key2":"2022-01-07T00:11:03.4133197Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:11:03.4289603Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:11:03.4289603Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:11:03.3195568Z","primaryEndpoints":{"dfs":"https://clitestvlciwxue3ibitylva.dfs.core.windows.net/","web":"https://clitestvlciwxue3ibitylva.z3.web.core.windows.net/","blob":"https://clitestvlciwxue3ibitylva.blob.core.windows.net/","queue":"https://clitestvlciwxue3ibitylva.queue.core.windows.net/","table":"https://clitestvlciwxue3ibitylva.table.core.windows.net/","file":"https://clitestvlciwxue3ibitylva.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk76ijui24h7q2foey6svr7yhnhb6tcuioxiiic7pto4b7aye52xazbtphpkn4igdg/providers/Microsoft.Storage/storageAccounts/clitestwii2xus2tgji433nh","name":"clitestwii2xus2tgji433nh","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:07:45.0812213Z","key2":"2021-11-11T22:07:45.0812213Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:45.0812213Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:45.0031142Z","primaryEndpoints":{"dfs":"https://clitestwii2xus2tgji433nh.dfs.core.windows.net/","web":"https://clitestwii2xus2tgji433nh.z3.web.core.windows.net/","blob":"https://clitestwii2xus2tgji433nh.blob.core.windows.net/","queue":"https://clitestwii2xus2tgji433nh.queue.core.windows.net/","table":"https://clitestwii2xus2tgji433nh.table.core.windows.net/","file":"https://clitestwii2xus2tgji433nh.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmdksg3tnpfj5ikmkrjg42qofreubpsr5cdqs5zhcezqj7v5kgrmpx525kvdqm57ya/providers/Microsoft.Storage/storageAccounts/clitesty7sgxo5udzywq7e2x","name":"clitesty7sgxo5udzywq7e2x","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-25T22:58:47.0325764Z","key2":"2021-11-25T22:58:47.0325764Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T22:58:47.0325764Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T22:58:47.0325764Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T22:58:46.9231863Z","primaryEndpoints":{"dfs":"https://clitesty7sgxo5udzywq7e2x.dfs.core.windows.net/","web":"https://clitesty7sgxo5udzywq7e2x.z3.web.core.windows.net/","blob":"https://clitesty7sgxo5udzywq7e2x.blob.core.windows.net/","queue":"https://clitesty7sgxo5udzywq7e2x.queue.core.windows.net/","table":"https://clitesty7sgxo5udzywq7e2x.table.core.windows.net/","file":"https://clitesty7sgxo5udzywq7e2x.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2s77glmcoemgtgmlcgi7repejuetyjuabg2vruyc3ayj4u66cvgdpdofhcxrql5h5/providers/Microsoft.Storage/storageAccounts/clitestycqidlsdiibjyb3t4","name":"clitestycqidlsdiibjyb3t4","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T03:39:28.2566482Z","key2":"2022-03-18T03:39:28.2566482Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:39:28.2566482Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:39:28.2566482Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:39:28.1472265Z","primaryEndpoints":{"dfs":"https://clitestycqidlsdiibjyb3t4.dfs.core.windows.net/","web":"https://clitestycqidlsdiibjyb3t4.z3.web.core.windows.net/","blob":"https://clitestycqidlsdiibjyb3t4.blob.core.windows.net/","queue":"https://clitestycqidlsdiibjyb3t4.queue.core.windows.net/","table":"https://clitestycqidlsdiibjyb3t4.table.core.windows.net/","file":"https://clitestycqidlsdiibjyb3t4.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjrq7ijqostqq5aahlpjr7formy46bcwnloyvgqqn3ztsmo4rfypznsbm6x6wq7m4f/providers/Microsoft.Storage/storageAccounts/clitestyx33svgzm5sxgbbwr","name":"clitestyx33svgzm5sxgbbwr","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T07:41:49.5764921Z","key2":"2022-03-17T07:41:49.5764921Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:41:49.5921170Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:41:49.5921170Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:41:49.4827371Z","primaryEndpoints":{"dfs":"https://clitestyx33svgzm5sxgbbwr.dfs.core.windows.net/","web":"https://clitestyx33svgzm5sxgbbwr.z3.web.core.windows.net/","blob":"https://clitestyx33svgzm5sxgbbwr.blob.core.windows.net/","queue":"https://clitestyx33svgzm5sxgbbwr.queue.core.windows.net/","table":"https://clitestyx33svgzm5sxgbbwr.table.core.windows.net/","file":"https://clitestyx33svgzm5sxgbbwr.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/ysdnssa","name":"ysdnssa","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"dnsEndpointType":"AzureDnsZone","keyCreationTime":{"key1":"2022-04-11T06:48:10.4999157Z","key2":"2022-04-11T06:48:10.4999157Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T06:48:10.5155682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T06:48:10.5155682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T06:48:10.4217919Z","primaryEndpoints":{"dfs":"https://ysdnssa.z6.dfs.storage.azure.net/","web":"https://ysdnssa.z6.web.storage.azure.net/","blob":"https://ysdnssa.z6.blob.storage.azure.net/","queue":"https://ysdnssa.z6.queue.storage.azure.net/","table":"https://ysdnssa.z6.table.storage.azure.net/","file":"https://ysdnssa.z6.file.storage.azure.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ysdnssa-secondary.z6.dfs.storage.azure.net/","web":"https://ysdnssa-secondary.z6.web.storage.azure.net/","blob":"https://ysdnssa-secondary.z6.blob.storage.azure.net/","queue":"https://ysdnssa-secondary.z6.queue.storage.azure.net/","table":"https://ysdnssa-secondary.z6.table.storage.azure.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuapeast","name":"zhiyihuangsaeuapeast","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-04-15T04:15:43.8012808Z","key2":"2022-04-15T04:15:43.8012808Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"isSftpEnabled":false,"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"isHnsEnabled":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-15T04:15:43.8012808Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-15T04:15:43.8012808Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-15T04:15:43.6918664Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast.table.core.windows.net/","file":"https://zhiyihuangsaeuapeast.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuapeast-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuapeast-secondary.z3.web.core.windows.net/","blob":"https://zhiyihuangsaeuapeast-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuapeast-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuapeast-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest47xrljy3nijo3qd5vzsdilpqy5gmhc6vhrxdt4iznh6uaopskftgp4scam2w7drpot4l/providers/Microsoft.Storage/storageAccounts/clitest23zhehg2ug7pzcmmt","name":"clitest23zhehg2ug7pzcmmt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T23:52:09.9267277Z","key2":"2021-10-22T23:52:09.9267277Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T23:52:09.9267277Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T23:52:09.8486094Z","primaryEndpoints":{"dfs":"https://clitest23zhehg2ug7pzcmmt.dfs.core.windows.net/","web":"https://clitest23zhehg2ug7pzcmmt.z2.web.core.windows.net/","blob":"https://clitest23zhehg2ug7pzcmmt.blob.core.windows.net/","queue":"https://clitest23zhehg2ug7pzcmmt.queue.core.windows.net/","table":"https://clitest23zhehg2ug7pzcmmt.table.core.windows.net/","file":"https://clitest23zhehg2ug7pzcmmt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuh33sdgq6xqrgmv2evfqsj7s5elfu75j425duypsq3ykwiqywcsbk7k5hm2dn6dhx3ga/providers/Microsoft.Storage/storageAccounts/clitest2dpu5cejmyr6o6fy4","name":"clitest2dpu5cejmyr6o6fy4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-13T01:03:47.8707679Z","key2":"2021-08-13T01:03:47.8707679Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-13T01:03:47.8707679Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-13T01:03:47.8082686Z","primaryEndpoints":{"dfs":"https://clitest2dpu5cejmyr6o6fy4.dfs.core.windows.net/","web":"https://clitest2dpu5cejmyr6o6fy4.z2.web.core.windows.net/","blob":"https://clitest2dpu5cejmyr6o6fy4.blob.core.windows.net/","queue":"https://clitest2dpu5cejmyr6o6fy4.queue.core.windows.net/","table":"https://clitest2dpu5cejmyr6o6fy4.table.core.windows.net/","file":"https://clitest2dpu5cejmyr6o6fy4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrl6kiw7ux2j73xj2v7cbet4byjrmn5uenrcnz6qfu5oxpvxtkkik2djcxys4gcpfrgr4/providers/Microsoft.Storage/storageAccounts/clitest2hc2cek5kg4wbcqwa","name":"clitest2hc2cek5kg4wbcqwa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T09:03:47.2900270Z","key2":"2021-06-18T09:03:47.2900270Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T09:03:47.2950283Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T09:03:47.2400033Z","primaryEndpoints":{"dfs":"https://clitest2hc2cek5kg4wbcqwa.dfs.core.windows.net/","web":"https://clitest2hc2cek5kg4wbcqwa.z2.web.core.windows.net/","blob":"https://clitest2hc2cek5kg4wbcqwa.blob.core.windows.net/","queue":"https://clitest2hc2cek5kg4wbcqwa.queue.core.windows.net/","table":"https://clitest2hc2cek5kg4wbcqwa.table.core.windows.net/","file":"https://clitest2hc2cek5kg4wbcqwa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcwbyb7elcliee36ry67adfa656263s5nl2c67it2o2pjr3wrh5mwmg3ocygfxjou3vxa/providers/Microsoft.Storage/storageAccounts/clitest2wy5mqj7vog4cn65p","name":"clitest2wy5mqj7vog4cn65p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-22T16:12:01.9361563Z","key2":"2021-10-22T16:12:01.9361563Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-22T16:12:01.9361563Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-22T16:12:01.8580265Z","primaryEndpoints":{"dfs":"https://clitest2wy5mqj7vog4cn65p.dfs.core.windows.net/","web":"https://clitest2wy5mqj7vog4cn65p.z2.web.core.windows.net/","blob":"https://clitest2wy5mqj7vog4cn65p.blob.core.windows.net/","queue":"https://clitest2wy5mqj7vog4cn65p.queue.core.windows.net/","table":"https://clitest2wy5mqj7vog4cn65p.table.core.windows.net/","file":"https://clitest2wy5mqj7vog4cn65p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaars34if2f6awhrzr5vwtr2ocprv723xlflz2zxxqut3f6tqiv2hjy2l5zaj6kutqvbq/providers/Microsoft.Storage/storageAccounts/clitest3r7bin53shduexe6n","name":"clitest3r7bin53shduexe6n","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-02T23:36:46.8626538Z","key2":"2021-12-02T23:36:46.8626538Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:36:46.8782491Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:36:46.8782491Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:36:46.7845261Z","primaryEndpoints":{"dfs":"https://clitest3r7bin53shduexe6n.dfs.core.windows.net/","web":"https://clitest3r7bin53shduexe6n.z2.web.core.windows.net/","blob":"https://clitest3r7bin53shduexe6n.blob.core.windows.net/","queue":"https://clitest3r7bin53shduexe6n.queue.core.windows.net/","table":"https://clitest3r7bin53shduexe6n.table.core.windows.net/","file":"https://clitest3r7bin53shduexe6n.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesto72ftnrt7hfn5ltlqnh34e5cjvdyfwj4ny5d7yebu4imldxsoizqp5cazyouoms7ev6j/providers/Microsoft.Storage/storageAccounts/clitest4suuy3hvssqi2u3px","name":"clitest4suuy3hvssqi2u3px","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:23:05.8954115Z","key2":"2021-11-11T22:23:05.8954115Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:23:05.9110345Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:23:05.8172663Z","primaryEndpoints":{"dfs":"https://clitest4suuy3hvssqi2u3px.dfs.core.windows.net/","web":"https://clitest4suuy3hvssqi2u3px.z2.web.core.windows.net/","blob":"https://clitest4suuy3hvssqi2u3px.blob.core.windows.net/","queue":"https://clitest4suuy3hvssqi2u3px.queue.core.windows.net/","table":"https://clitest4suuy3hvssqi2u3px.table.core.windows.net/","file":"https://clitest4suuy3hvssqi2u3px.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestra7ouuwajkupsos3f6xg6pbwkbxdaearft7d4e35uecoopx7yzgnelmfuetvhvn4jle6/providers/Microsoft.Storage/storageAccounts/clitest55eq4q3yibnqxk2lk","name":"clitest55eq4q3yibnqxk2lk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-07T23:09:45.8237560Z","key2":"2022-04-07T23:09:45.8237560Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T23:09:45.8237560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T23:09:45.8237560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T23:09:45.7143786Z","primaryEndpoints":{"dfs":"https://clitest55eq4q3yibnqxk2lk.dfs.core.windows.net/","web":"https://clitest55eq4q3yibnqxk2lk.z2.web.core.windows.net/","blob":"https://clitest55eq4q3yibnqxk2lk.blob.core.windows.net/","queue":"https://clitest55eq4q3yibnqxk2lk.queue.core.windows.net/","table":"https://clitest55eq4q3yibnqxk2lk.table.core.windows.net/","file":"https://clitest55eq4q3yibnqxk2lk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaocausrs3iu33bd7z3atmvd3kphc6acu73ifeyvogvdgdktef736y3qrmxkdwrnraj4o/providers/Microsoft.Storage/storageAccounts/clitest5fich3ydeobhd23w2","name":"clitest5fich3ydeobhd23w2","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-28T22:27:25.1198767Z","key2":"2022-04-28T22:27:25.1198767Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:27:25.1355320Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:27:25.1355320Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:27:24.9948735Z","primaryEndpoints":{"dfs":"https://clitest5fich3ydeobhd23w2.dfs.core.windows.net/","web":"https://clitest5fich3ydeobhd23w2.z2.web.core.windows.net/","blob":"https://clitest5fich3ydeobhd23w2.blob.core.windows.net/","queue":"https://clitest5fich3ydeobhd23w2.queue.core.windows.net/","table":"https://clitest5fich3ydeobhd23w2.table.core.windows.net/","file":"https://clitest5fich3ydeobhd23w2.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttt33kr36k27jzupqzyvmwoyxnhhkzd57gzdkiruhhj7hmr7wi5gh32ofdsa4cm2cbigi/providers/Microsoft.Storage/storageAccounts/clitest5nfub4nyp5igwlueb","name":"clitest5nfub4nyp5igwlueb","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T22:51:11.9414791Z","key2":"2022-02-24T22:51:11.9414791Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:51:11.9414791Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:51:11.9414791Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:51:11.8477455Z","primaryEndpoints":{"dfs":"https://clitest5nfub4nyp5igwlueb.dfs.core.windows.net/","web":"https://clitest5nfub4nyp5igwlueb.z2.web.core.windows.net/","blob":"https://clitest5nfub4nyp5igwlueb.blob.core.windows.net/","queue":"https://clitest5nfub4nyp5igwlueb.queue.core.windows.net/","table":"https://clitest5nfub4nyp5igwlueb.table.core.windows.net/","file":"https://clitest5nfub4nyp5igwlueb.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestml55iowweb6q7xe2wje5hizd4cfs53eijje47bsf7qy5xru2fegf2adfotoitfvq7b34/providers/Microsoft.Storage/storageAccounts/clitest6tnfqsy73mo2qi6ov","name":"clitest6tnfqsy73mo2qi6ov","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-11T01:42:00.2641426Z","key2":"2022-03-11T01:42:00.2641426Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-11T01:42:00.2797581Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-11T01:42:00.2797581Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-11T01:42:00.1391781Z","primaryEndpoints":{"dfs":"https://clitest6tnfqsy73mo2qi6ov.dfs.core.windows.net/","web":"https://clitest6tnfqsy73mo2qi6ov.z2.web.core.windows.net/","blob":"https://clitest6tnfqsy73mo2qi6ov.blob.core.windows.net/","queue":"https://clitest6tnfqsy73mo2qi6ov.queue.core.windows.net/","table":"https://clitest6tnfqsy73mo2qi6ov.table.core.windows.net/","file":"https://clitest6tnfqsy73mo2qi6ov.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlg5ebdqcv52sflwjoqlwhicwckgl6uznufjdep6cezb52lt73nagcohr2yn5s2pjkddl/providers/Microsoft.Storage/storageAccounts/clitest6vxkrzgloyre3jqjs","name":"clitest6vxkrzgloyre3jqjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-23T03:10:29.4846667Z","key2":"2021-07-23T03:10:29.4846667Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-23T03:10:29.5002574Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-23T03:10:29.4377939Z","primaryEndpoints":{"dfs":"https://clitest6vxkrzgloyre3jqjs.dfs.core.windows.net/","web":"https://clitest6vxkrzgloyre3jqjs.z2.web.core.windows.net/","blob":"https://clitest6vxkrzgloyre3jqjs.blob.core.windows.net/","queue":"https://clitest6vxkrzgloyre3jqjs.queue.core.windows.net/","table":"https://clitest6vxkrzgloyre3jqjs.table.core.windows.net/","file":"https://clitest6vxkrzgloyre3jqjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmrngm5xnqzkfc35bpac2frhloyp5bhqs3bkzmzzsk4uxhhc5g5bilsacnxbfmtzgwe2j/providers/Microsoft.Storage/storageAccounts/clitest7bnb7msut4cjgzpbr","name":"clitest7bnb7msut4cjgzpbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-29T22:46:56.7491572Z","key2":"2021-10-29T22:46:56.7491572Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-29T22:46:56.7491572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-29T22:46:56.6866372Z","primaryEndpoints":{"dfs":"https://clitest7bnb7msut4cjgzpbr.dfs.core.windows.net/","web":"https://clitest7bnb7msut4cjgzpbr.z2.web.core.windows.net/","blob":"https://clitest7bnb7msut4cjgzpbr.blob.core.windows.net/","queue":"https://clitest7bnb7msut4cjgzpbr.queue.core.windows.net/","table":"https://clitest7bnb7msut4cjgzpbr.table.core.windows.net/","file":"https://clitest7bnb7msut4cjgzpbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5pxpr64tqxefi4kgvuh5z3cmr3srlor6oj3om2ehpxbkm7orzvfbgqagtooojquptagq/providers/Microsoft.Storage/storageAccounts/clitesta23vfo64epdjcu3ot","name":"clitesta23vfo64epdjcu3ot","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T05:20:46.8438078Z","key2":"2021-12-09T05:20:46.8438078Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:20:46.8594509Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:20:46.8594509Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:20:46.7656986Z","primaryEndpoints":{"dfs":"https://clitesta23vfo64epdjcu3ot.dfs.core.windows.net/","web":"https://clitesta23vfo64epdjcu3ot.z2.web.core.windows.net/","blob":"https://clitesta23vfo64epdjcu3ot.blob.core.windows.net/","queue":"https://clitesta23vfo64epdjcu3ot.queue.core.windows.net/","table":"https://clitesta23vfo64epdjcu3ot.table.core.windows.net/","file":"https://clitesta23vfo64epdjcu3ot.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcioaekrdcac3gfopptjaajefdj423bny2ijiohhlstguyjbz7ey5yopzt3glfk3wu22c/providers/Microsoft.Storage/storageAccounts/clitestbajwfvucqjul4yvoq","name":"clitestbajwfvucqjul4yvoq","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T05:43:59.4080912Z","key2":"2022-03-16T05:43:59.4080912Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:43:59.4237194Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:43:59.4237194Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:43:59.3143640Z","primaryEndpoints":{"dfs":"https://clitestbajwfvucqjul4yvoq.dfs.core.windows.net/","web":"https://clitestbajwfvucqjul4yvoq.z2.web.core.windows.net/","blob":"https://clitestbajwfvucqjul4yvoq.blob.core.windows.net/","queue":"https://clitestbajwfvucqjul4yvoq.queue.core.windows.net/","table":"https://clitestbajwfvucqjul4yvoq.table.core.windows.net/","file":"https://clitestbajwfvucqjul4yvoq.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestef6eejui2ry622mc6zf2nvoemmdy7t3minir53pkvaii6ftsyufmbwzcwdomdg4ybrb6/providers/Microsoft.Storage/storageAccounts/clitestcnrkbgnvxvtoswnwk","name":"clitestcnrkbgnvxvtoswnwk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T03:54:10.8298714Z","key2":"2022-03-18T03:54:10.8298714Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:54:10.8298714Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:54:10.8298714Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:54:10.7204974Z","primaryEndpoints":{"dfs":"https://clitestcnrkbgnvxvtoswnwk.dfs.core.windows.net/","web":"https://clitestcnrkbgnvxvtoswnwk.z2.web.core.windows.net/","blob":"https://clitestcnrkbgnvxvtoswnwk.blob.core.windows.net/","queue":"https://clitestcnrkbgnvxvtoswnwk.queue.core.windows.net/","table":"https://clitestcnrkbgnvxvtoswnwk.table.core.windows.net/","file":"https://clitestcnrkbgnvxvtoswnwk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfwybg5aqnlewkvelizobsdyy6zocpnnltod4k5d6l62rlz3wfkmdpz7fcw3xbvo45lad/providers/Microsoft.Storage/storageAccounts/clitestdk7kvmf5lss5lltse","name":"clitestdk7kvmf5lss5lltse","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T03:24:22.5335528Z","key2":"2021-06-21T03:24:22.5335528Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T03:24:22.5335528Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T03:24:22.4635745Z","primaryEndpoints":{"dfs":"https://clitestdk7kvmf5lss5lltse.dfs.core.windows.net/","web":"https://clitestdk7kvmf5lss5lltse.z2.web.core.windows.net/","blob":"https://clitestdk7kvmf5lss5lltse.blob.core.windows.net/","queue":"https://clitestdk7kvmf5lss5lltse.queue.core.windows.net/","table":"https://clitestdk7kvmf5lss5lltse.table.core.windows.net/","file":"https://clitestdk7kvmf5lss5lltse.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestem5kabxlxhdb6zfxdhtqgoaa4f5fgadqcvzwbxjv4i3tpl7cazs3yx46oidsxdy77cy2/providers/Microsoft.Storage/storageAccounts/clitestdu2ev4t4zoit7bvqi","name":"clitestdu2ev4t4zoit7bvqi","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-23T03:41:00.1525213Z","key2":"2022-02-23T03:41:00.1525213Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:41:00.1682236Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:41:00.1682236Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:41:00.0743945Z","primaryEndpoints":{"dfs":"https://clitestdu2ev4t4zoit7bvqi.dfs.core.windows.net/","web":"https://clitestdu2ev4t4zoit7bvqi.z2.web.core.windows.net/","blob":"https://clitestdu2ev4t4zoit7bvqi.blob.core.windows.net/","queue":"https://clitestdu2ev4t4zoit7bvqi.queue.core.windows.net/","table":"https://clitestdu2ev4t4zoit7bvqi.table.core.windows.net/","file":"https://clitestdu2ev4t4zoit7bvqi.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttnxak6zvgtto64ihvpqeb6k6axceeskjnygs6kmirhy7t3ea2fixecjhr7i4qckpqpso/providers/Microsoft.Storage/storageAccounts/clitesteabyzaucegm7asmdy","name":"clitesteabyzaucegm7asmdy","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T22:56:30.5353621Z","key2":"2022-03-31T22:56:30.5353621Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:56:30.5510033Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:56:30.5510033Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:56:30.4416480Z","primaryEndpoints":{"dfs":"https://clitesteabyzaucegm7asmdy.dfs.core.windows.net/","web":"https://clitesteabyzaucegm7asmdy.z2.web.core.windows.net/","blob":"https://clitesteabyzaucegm7asmdy.blob.core.windows.net/","queue":"https://clitesteabyzaucegm7asmdy.queue.core.windows.net/","table":"https://clitesteabyzaucegm7asmdy.table.core.windows.net/","file":"https://clitesteabyzaucegm7asmdy.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestaplqr3c25xdddlwukirxixwo5byw5rkls3kr5fo66qoamflxrkjhxpt27enj7wmk2yuj/providers/Microsoft.Storage/storageAccounts/clitestfbytzu7syzfrmr7kf","name":"clitestfbytzu7syzfrmr7kf","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-04T22:22:45.3374456Z","key2":"2021-11-04T22:22:45.3374456Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-04T22:22:45.3374456Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-04T22:22:45.2593440Z","primaryEndpoints":{"dfs":"https://clitestfbytzu7syzfrmr7kf.dfs.core.windows.net/","web":"https://clitestfbytzu7syzfrmr7kf.z2.web.core.windows.net/","blob":"https://clitestfbytzu7syzfrmr7kf.blob.core.windows.net/","queue":"https://clitestfbytzu7syzfrmr7kf.queue.core.windows.net/","table":"https://clitestfbytzu7syzfrmr7kf.table.core.windows.net/","file":"https://clitestfbytzu7syzfrmr7kf.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwhxadwesuwxcw3oci5pchhqwqwmcqiriqymhru2exjji6ax7focfxa2wpmd3xbxtaq3t/providers/Microsoft.Storage/storageAccounts/clitestftms76siovw6xle6l","name":"clitestftms76siovw6xle6l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-24T23:55:00.0445344Z","key2":"2022-03-24T23:55:00.0445344Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:55:00.0601285Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:55:00.0601285Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:54:59.9351597Z","primaryEndpoints":{"dfs":"https://clitestftms76siovw6xle6l.dfs.core.windows.net/","web":"https://clitestftms76siovw6xle6l.z2.web.core.windows.net/","blob":"https://clitestftms76siovw6xle6l.blob.core.windows.net/","queue":"https://clitestftms76siovw6xle6l.queue.core.windows.net/","table":"https://clitestftms76siovw6xle6l.table.core.windows.net/","file":"https://clitestftms76siovw6xle6l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest7yubzobtgqqoviarcco22mlfkafuvu32s3o4dfts54zzanzbsl5ip7rzaxzgigg7ijta/providers/Microsoft.Storage/storageAccounts/clitestg6yfm7cgxhb4ewrdd","name":"clitestg6yfm7cgxhb4ewrdd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-26T08:45:50.1646651Z","key2":"2022-04-26T08:45:50.1646651Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:45:50.1646651Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:45:50.1646651Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:45:50.0553084Z","primaryEndpoints":{"dfs":"https://clitestg6yfm7cgxhb4ewrdd.dfs.core.windows.net/","web":"https://clitestg6yfm7cgxhb4ewrdd.z2.web.core.windows.net/","blob":"https://clitestg6yfm7cgxhb4ewrdd.blob.core.windows.net/","queue":"https://clitestg6yfm7cgxhb4ewrdd.queue.core.windows.net/","table":"https://clitestg6yfm7cgxhb4ewrdd.table.core.windows.net/","file":"https://clitestg6yfm7cgxhb4ewrdd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestmf7nhc2b7xj4ixozvacoyhu5txvmpbvnechdktpac6dpdx3ckv6jt6vebrkl24rzui4n/providers/Microsoft.Storage/storageAccounts/clitestgqwqxremngb73a7d4","name":"clitestgqwqxremngb73a7d4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-05T23:00:55.1151173Z","key2":"2022-05-05T23:00:55.1151173Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:00:55.1151173Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:00:55.1151173Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:00:54.9900949Z","primaryEndpoints":{"dfs":"https://clitestgqwqxremngb73a7d4.dfs.core.windows.net/","web":"https://clitestgqwqxremngb73a7d4.z2.web.core.windows.net/","blob":"https://clitestgqwqxremngb73a7d4.blob.core.windows.net/","queue":"https://clitestgqwqxremngb73a7d4.queue.core.windows.net/","table":"https://clitestgqwqxremngb73a7d4.table.core.windows.net/","file":"https://clitestgqwqxremngb73a7d4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkmydtxqqwqds5d67vdbrwtk32xdryjsxq6fp74nse75bdhdla7mh47b6myevefnapwyx/providers/Microsoft.Storage/storageAccounts/clitestgqwsejh46zuqlc5pm","name":"clitestgqwsejh46zuqlc5pm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-06T05:27:12.7993484Z","key2":"2021-08-06T05:27:12.7993484Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-06T05:27:12.8149753Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-06T05:27:12.7368799Z","primaryEndpoints":{"dfs":"https://clitestgqwsejh46zuqlc5pm.dfs.core.windows.net/","web":"https://clitestgqwsejh46zuqlc5pm.z2.web.core.windows.net/","blob":"https://clitestgqwsejh46zuqlc5pm.blob.core.windows.net/","queue":"https://clitestgqwsejh46zuqlc5pm.queue.core.windows.net/","table":"https://clitestgqwsejh46zuqlc5pm.table.core.windows.net/","file":"https://clitestgqwsejh46zuqlc5pm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestumpqlcfhjrqokmcud3ilwtvxyfowdjypjqgyymcf4whtgbq2gzzq6f2rqs66ll4mjgzm/providers/Microsoft.Storage/storageAccounts/clitestgu6cs7lus5a567u57","name":"clitestgu6cs7lus5a567u57","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T09:14:06.5832387Z","key2":"2022-03-16T09:14:06.5832387Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:14:06.5832387Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:14:06.5832387Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:14:06.4894945Z","primaryEndpoints":{"dfs":"https://clitestgu6cs7lus5a567u57.dfs.core.windows.net/","web":"https://clitestgu6cs7lus5a567u57.z2.web.core.windows.net/","blob":"https://clitestgu6cs7lus5a567u57.blob.core.windows.net/","queue":"https://clitestgu6cs7lus5a567u57.queue.core.windows.net/","table":"https://clitestgu6cs7lus5a567u57.table.core.windows.net/","file":"https://clitestgu6cs7lus5a567u57.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestndsnnd5ibnsjkzl7w5mbaujjmelonc2xjmyrd325iiwno27u6sxcxkewjeox2x2wr633/providers/Microsoft.Storage/storageAccounts/clitestgz6nb4it72a36mdpt","name":"clitestgz6nb4it72a36mdpt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-20T02:02:00.4577106Z","key2":"2021-08-20T02:02:00.4577106Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-20T02:02:00.4577106Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-20T02:02:00.3952449Z","primaryEndpoints":{"dfs":"https://clitestgz6nb4it72a36mdpt.dfs.core.windows.net/","web":"https://clitestgz6nb4it72a36mdpt.z2.web.core.windows.net/","blob":"https://clitestgz6nb4it72a36mdpt.blob.core.windows.net/","queue":"https://clitestgz6nb4it72a36mdpt.queue.core.windows.net/","table":"https://clitestgz6nb4it72a36mdpt.table.core.windows.net/","file":"https://clitestgz6nb4it72a36mdpt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestn4htsp3pg7ss7lmzhcljejgtykexcvsnpgv6agwecgmuu6ckzau64qsjr7huw7yjt7xp/providers/Microsoft.Storage/storageAccounts/clitestixj25nsrxwuhditis","name":"clitestixj25nsrxwuhditis","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-25T00:34:17.1563369Z","key2":"2022-02-25T00:34:17.1563369Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:34:17.1719415Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:34:17.1719415Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:34:17.0626105Z","primaryEndpoints":{"dfs":"https://clitestixj25nsrxwuhditis.dfs.core.windows.net/","web":"https://clitestixj25nsrxwuhditis.z2.web.core.windows.net/","blob":"https://clitestixj25nsrxwuhditis.blob.core.windows.net/","queue":"https://clitestixj25nsrxwuhditis.queue.core.windows.net/","table":"https://clitestixj25nsrxwuhditis.table.core.windows.net/","file":"https://clitestixj25nsrxwuhditis.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestgq2rbt5t5uv3qy2hasu5gvqrlzozx6vzerszimnby4ybqtp5fmecaxj3to5iemnt7zxi/providers/Microsoft.Storage/storageAccounts/clitestl3yjfwd43tngr3lc3","name":"clitestl3yjfwd43tngr3lc3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-14T23:27:20.0298879Z","key2":"2022-04-14T23:27:20.0298879Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0298879Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:27:20.0298879Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:27:19.9204650Z","primaryEndpoints":{"dfs":"https://clitestl3yjfwd43tngr3lc3.dfs.core.windows.net/","web":"https://clitestl3yjfwd43tngr3lc3.z2.web.core.windows.net/","blob":"https://clitestl3yjfwd43tngr3lc3.blob.core.windows.net/","queue":"https://clitestl3yjfwd43tngr3lc3.queue.core.windows.net/","table":"https://clitestl3yjfwd43tngr3lc3.table.core.windows.net/","file":"https://clitestl3yjfwd43tngr3lc3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestepy64dgrtly4yjibvcoccnejqyhiq4x7o6p7agna5wsmlycai7yxgi3cq3r2y6obgwfd/providers/Microsoft.Storage/storageAccounts/clitestld7574jebhj62dtvt","name":"clitestld7574jebhj62dtvt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-07T00:25:44.6498481Z","key2":"2022-01-07T00:25:44.6498481Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:25:44.6498481Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:25:44.6498481Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:25:44.5717202Z","primaryEndpoints":{"dfs":"https://clitestld7574jebhj62dtvt.dfs.core.windows.net/","web":"https://clitestld7574jebhj62dtvt.z2.web.core.windows.net/","blob":"https://clitestld7574jebhj62dtvt.blob.core.windows.net/","queue":"https://clitestld7574jebhj62dtvt.queue.core.windows.net/","table":"https://clitestld7574jebhj62dtvt.table.core.windows.net/","file":"https://clitestld7574jebhj62dtvt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestp5tcxahtvl6aa72hi7stjq5jf52e6pomwtrblva65dei2ftuqpruyn4w4twv7rqj3idw/providers/Microsoft.Storage/storageAccounts/clitestljawlm4h73ws6xqet","name":"clitestljawlm4h73ws6xqet","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-30T22:47:49.0810388Z","key2":"2021-12-30T22:47:49.0810388Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:47:49.0966383Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:47:49.0966383Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:47:48.9404345Z","primaryEndpoints":{"dfs":"https://clitestljawlm4h73ws6xqet.dfs.core.windows.net/","web":"https://clitestljawlm4h73ws6xqet.z2.web.core.windows.net/","blob":"https://clitestljawlm4h73ws6xqet.blob.core.windows.net/","queue":"https://clitestljawlm4h73ws6xqet.queue.core.windows.net/","table":"https://clitestljawlm4h73ws6xqet.table.core.windows.net/","file":"https://clitestljawlm4h73ws6xqet.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsc4q5ncei7qimmmmtqmedt4valwfif74bbu7mdfwqimzfzfkopwgrmua7p4rcsga53m4/providers/Microsoft.Storage/storageAccounts/clitestlssboc5vg5mdivn4h","name":"clitestlssboc5vg5mdivn4h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-18T08:34:36.9887468Z","key2":"2021-06-18T08:34:36.9887468Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-18T08:34:36.9937445Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-18T08:34:36.9237913Z","primaryEndpoints":{"dfs":"https://clitestlssboc5vg5mdivn4h.dfs.core.windows.net/","web":"https://clitestlssboc5vg5mdivn4h.z2.web.core.windows.net/","blob":"https://clitestlssboc5vg5mdivn4h.blob.core.windows.net/","queue":"https://clitestlssboc5vg5mdivn4h.queue.core.windows.net/","table":"https://clitestlssboc5vg5mdivn4h.table.core.windows.net/","file":"https://clitestlssboc5vg5mdivn4h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5yatgcl7dfear3v3e5d5hrqbpo5bdotmwoq7auiuykmzx74is6rzhkib56ajwf5ghxrk/providers/Microsoft.Storage/storageAccounts/clitestlzfflnot5wnc3y4j3","name":"clitestlzfflnot5wnc3y4j3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:21:02.0736425Z","key2":"2021-09-28T02:21:02.0736425Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:21:02.0736425Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:21:02.0267640Z","primaryEndpoints":{"dfs":"https://clitestlzfflnot5wnc3y4j3.dfs.core.windows.net/","web":"https://clitestlzfflnot5wnc3y4j3.z2.web.core.windows.net/","blob":"https://clitestlzfflnot5wnc3y4j3.blob.core.windows.net/","queue":"https://clitestlzfflnot5wnc3y4j3.queue.core.windows.net/","table":"https://clitestlzfflnot5wnc3y4j3.table.core.windows.net/","file":"https://clitestlzfflnot5wnc3y4j3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4uclirqb3ls66vfea6dckw3hj5kaextm324ugnbkquibcn2rck7b7gmrmql55g3zknff/providers/Microsoft.Storage/storageAccounts/clitestm4jcw64slbkeds52p","name":"clitestm4jcw64slbkeds52p","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-21T23:03:20.8663156Z","key2":"2022-04-21T23:03:20.8663156Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:03:20.8663156Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:03:20.8663156Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:03:20.7413381Z","primaryEndpoints":{"dfs":"https://clitestm4jcw64slbkeds52p.dfs.core.windows.net/","web":"https://clitestm4jcw64slbkeds52p.z2.web.core.windows.net/","blob":"https://clitestm4jcw64slbkeds52p.blob.core.windows.net/","queue":"https://clitestm4jcw64slbkeds52p.queue.core.windows.net/","table":"https://clitestm4jcw64slbkeds52p.table.core.windows.net/","file":"https://clitestm4jcw64slbkeds52p.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest6q54l25xpde6kfnauzzkpfgepjiio73onycgbulqkawkv5wcigbnnhzv7uao7abedoer/providers/Microsoft.Storage/storageAccounts/clitestm5bj2p5ajecznrca6","name":"clitestm5bj2p5ajecznrca6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T01:35:33.3327243Z","key2":"2022-03-18T01:35:33.3327243Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:35:33.3503663Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:35:33.3503663Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:35:33.2545964Z","primaryEndpoints":{"dfs":"https://clitestm5bj2p5ajecznrca6.dfs.core.windows.net/","web":"https://clitestm5bj2p5ajecznrca6.z2.web.core.windows.net/","blob":"https://clitestm5bj2p5ajecznrca6.blob.core.windows.net/","queue":"https://clitestm5bj2p5ajecznrca6.queue.core.windows.net/","table":"https://clitestm5bj2p5ajecznrca6.table.core.windows.net/","file":"https://clitestm5bj2p5ajecznrca6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestjkw7fpanpscpileddbqrrrkjrtb5xi47wmvttkiqwsqcuo3ldvzszwso3x4c5apy6m5o/providers/Microsoft.Storage/storageAccounts/clitestm6u3xawj3qsydpfam","name":"clitestm6u3xawj3qsydpfam","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T07:13:03.1496586Z","key2":"2021-09-07T07:13:03.1496586Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T07:13:03.1496586Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T07:13:03.0714932Z","primaryEndpoints":{"dfs":"https://clitestm6u3xawj3qsydpfam.dfs.core.windows.net/","web":"https://clitestm6u3xawj3qsydpfam.z2.web.core.windows.net/","blob":"https://clitestm6u3xawj3qsydpfam.blob.core.windows.net/","queue":"https://clitestm6u3xawj3qsydpfam.queue.core.windows.net/","table":"https://clitestm6u3xawj3qsydpfam.table.core.windows.net/","file":"https://clitestm6u3xawj3qsydpfam.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlasgl5zx6ikvcbociiykbocsytte2lohfxvpwhwimcc3vbrjjyw6bfbdr2vnimlyhqqi/providers/Microsoft.Storage/storageAccounts/clitestmmrdf65b6iyccd46o","name":"clitestmmrdf65b6iyccd46o","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T23:31:23.3308560Z","key2":"2021-12-09T23:31:23.3308560Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:31:23.3308560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:31:23.3308560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:31:23.2526784Z","primaryEndpoints":{"dfs":"https://clitestmmrdf65b6iyccd46o.dfs.core.windows.net/","web":"https://clitestmmrdf65b6iyccd46o.z2.web.core.windows.net/","blob":"https://clitestmmrdf65b6iyccd46o.blob.core.windows.net/","queue":"https://clitestmmrdf65b6iyccd46o.queue.core.windows.net/","table":"https://clitestmmrdf65b6iyccd46o.table.core.windows.net/","file":"https://clitestmmrdf65b6iyccd46o.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvilxen5dzbyerye5umdunqblbkglgcffizxusyzmgifnuy5xzu67t3fokkh6osaqqyyj/providers/Microsoft.Storage/storageAccounts/clitestoueypfkdm2ub7n246","name":"clitestoueypfkdm2ub7n246","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T07:57:05.8690860Z","key2":"2022-03-17T07:57:05.8690860Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:57:05.8847136Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:57:05.8847136Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:57:05.7597303Z","primaryEndpoints":{"dfs":"https://clitestoueypfkdm2ub7n246.dfs.core.windows.net/","web":"https://clitestoueypfkdm2ub7n246.z2.web.core.windows.net/","blob":"https://clitestoueypfkdm2ub7n246.blob.core.windows.net/","queue":"https://clitestoueypfkdm2ub7n246.queue.core.windows.net/","table":"https://clitestoueypfkdm2ub7n246.table.core.windows.net/","file":"https://clitestoueypfkdm2ub7n246.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvabzmquoslc3mtf5h3qd7dglwx45me4yxyefaw4ktsf7fbc3bx2tl75tdn5eqbgd3atx/providers/Microsoft.Storage/storageAccounts/clitestq7ur4vdqkjvy2rdgj","name":"clitestq7ur4vdqkjvy2rdgj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-28T02:27:14.4071914Z","key2":"2021-09-28T02:27:14.4071914Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-28T02:27:14.4071914Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-28T02:27:14.3446978Z","primaryEndpoints":{"dfs":"https://clitestq7ur4vdqkjvy2rdgj.dfs.core.windows.net/","web":"https://clitestq7ur4vdqkjvy2rdgj.z2.web.core.windows.net/","blob":"https://clitestq7ur4vdqkjvy2rdgj.blob.core.windows.net/","queue":"https://clitestq7ur4vdqkjvy2rdgj.queue.core.windows.net/","table":"https://clitestq7ur4vdqkjvy2rdgj.table.core.windows.net/","file":"https://clitestq7ur4vdqkjvy2rdgj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestugd6g2jxyo5mu6uxhc4zea4ygi2iuubouzxmdyuz6srnvrbwlidbvuu4qdieuwg4xlsr/providers/Microsoft.Storage/storageAccounts/clitestqorauf75d5yqkhdhc","name":"clitestqorauf75d5yqkhdhc","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-03T02:52:09.6342752Z","key2":"2021-09-03T02:52:09.6342752Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-03T02:52:09.6342752Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-03T02:52:09.5561638Z","primaryEndpoints":{"dfs":"https://clitestqorauf75d5yqkhdhc.dfs.core.windows.net/","web":"https://clitestqorauf75d5yqkhdhc.z2.web.core.windows.net/","blob":"https://clitestqorauf75d5yqkhdhc.blob.core.windows.net/","queue":"https://clitestqorauf75d5yqkhdhc.queue.core.windows.net/","table":"https://clitestqorauf75d5yqkhdhc.table.core.windows.net/","file":"https://clitestqorauf75d5yqkhdhc.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestixw7rtta5a356httmdosgg7qubvcaouftsvknfhvqqhqwftebu7jy5r27pprk7ctdnwp/providers/Microsoft.Storage/storageAccounts/clitestri5mezafhuqqzpn5f","name":"clitestri5mezafhuqqzpn5f","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T09:35:27.4649472Z","key2":"2022-03-16T09:35:27.4649472Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:35:27.4649472Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:35:27.4649472Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:35:27.3868241Z","primaryEndpoints":{"dfs":"https://clitestri5mezafhuqqzpn5f.dfs.core.windows.net/","web":"https://clitestri5mezafhuqqzpn5f.z2.web.core.windows.net/","blob":"https://clitestri5mezafhuqqzpn5f.blob.core.windows.net/","queue":"https://clitestri5mezafhuqqzpn5f.queue.core.windows.net/","table":"https://clitestri5mezafhuqqzpn5f.table.core.windows.net/","file":"https://clitestri5mezafhuqqzpn5f.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestevsaicktnjgl5cxsdgqxunvrpbz3b5kiwem5aupvcn666xqibcydgkcmqom7wfe3dapu/providers/Microsoft.Storage/storageAccounts/clitestrjmnbaleto4rtnerx","name":"clitestrjmnbaleto4rtnerx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T14:10:11.3863047Z","key2":"2022-03-17T14:10:11.3863047Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T14:10:11.3863047Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T14:10:11.3863047Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T14:10:11.2769522Z","primaryEndpoints":{"dfs":"https://clitestrjmnbaleto4rtnerx.dfs.core.windows.net/","web":"https://clitestrjmnbaleto4rtnerx.z2.web.core.windows.net/","blob":"https://clitestrjmnbaleto4rtnerx.blob.core.windows.net/","queue":"https://clitestrjmnbaleto4rtnerx.queue.core.windows.net/","table":"https://clitestrjmnbaleto4rtnerx.table.core.windows.net/","file":"https://clitestrjmnbaleto4rtnerx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4r6levc5rrhybrqdpa7ji574v5syh473mkechmyeuub52k5ppe6jpwdn4ummj5zz4dls/providers/Microsoft.Storage/storageAccounts/clitestrloxav4ddvzysochv","name":"clitestrloxav4ddvzysochv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-28T17:02:12.4537885Z","key2":"2022-02-28T17:02:12.4537885Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T17:02:12.4693878Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T17:02:12.4693878Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T17:02:12.3756824Z","primaryEndpoints":{"dfs":"https://clitestrloxav4ddvzysochv.dfs.core.windows.net/","web":"https://clitestrloxav4ddvzysochv.z2.web.core.windows.net/","blob":"https://clitestrloxav4ddvzysochv.blob.core.windows.net/","queue":"https://clitestrloxav4ddvzysochv.queue.core.windows.net/","table":"https://clitestrloxav4ddvzysochv.table.core.windows.net/","file":"https://clitestrloxav4ddvzysochv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestzbuh7m7bllna7xosjhxr5ppfs6tnukxctfm4ydkzmzvyt7tf2ru3yjmthwy6mqqp62yy/providers/Microsoft.Storage/storageAccounts/clitestrpsk56xwloumq6ngj","name":"clitestrpsk56xwloumq6ngj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-06-21T05:52:26.0729783Z","key2":"2021-06-21T05:52:26.0729783Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-06-21T05:52:26.0779697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-06-21T05:52:26.0129686Z","primaryEndpoints":{"dfs":"https://clitestrpsk56xwloumq6ngj.dfs.core.windows.net/","web":"https://clitestrpsk56xwloumq6ngj.z2.web.core.windows.net/","blob":"https://clitestrpsk56xwloumq6ngj.blob.core.windows.net/","queue":"https://clitestrpsk56xwloumq6ngj.queue.core.windows.net/","table":"https://clitestrpsk56xwloumq6ngj.table.core.windows.net/","file":"https://clitestrpsk56xwloumq6ngj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvjv33kuh5emihpapvtmm2rvht3tzrvzj3l7pygfh2yfwrlsqrgth2qfth6eylgrcnc2v/providers/Microsoft.Storage/storageAccounts/clitestrynzkqk7indncjb6c","name":"clitestrynzkqk7indncjb6c","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-03T23:37:22.5048830Z","key2":"2022-03-03T23:37:22.5048830Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:37:22.5205069Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:37:22.5205069Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:37:22.4111374Z","primaryEndpoints":{"dfs":"https://clitestrynzkqk7indncjb6c.dfs.core.windows.net/","web":"https://clitestrynzkqk7indncjb6c.z2.web.core.windows.net/","blob":"https://clitestrynzkqk7indncjb6c.blob.core.windows.net/","queue":"https://clitestrynzkqk7indncjb6c.queue.core.windows.net/","table":"https://clitestrynzkqk7indncjb6c.table.core.windows.net/","file":"https://clitestrynzkqk7indncjb6c.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3dson3a62z7n3t273by34bdkoa3bdosbrwqb6iwpygxslz6qc3jfeirp57b7zgufmnqk/providers/Microsoft.Storage/storageAccounts/clitests4scvwk2agr6ufpu3","name":"clitests4scvwk2agr6ufpu3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T09:55:14.9729032Z","key2":"2022-02-24T09:55:14.9729032Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:55:14.9729032Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:55:14.9729032Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:55:14.8791923Z","primaryEndpoints":{"dfs":"https://clitests4scvwk2agr6ufpu3.dfs.core.windows.net/","web":"https://clitests4scvwk2agr6ufpu3.z2.web.core.windows.net/","blob":"https://clitests4scvwk2agr6ufpu3.blob.core.windows.net/","queue":"https://clitests4scvwk2agr6ufpu3.queue.core.windows.net/","table":"https://clitests4scvwk2agr6ufpu3.table.core.windows.net/","file":"https://clitests4scvwk2agr6ufpu3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlmm4hekch44v2jjs6g7whi3qbgamfmevxrpjihfokewye7h3suswarq4mw5gdmosfj2y/providers/Microsoft.Storage/storageAccounts/clitests6o6rszcmwmsvtcwx","name":"clitests6o6rszcmwmsvtcwx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-11T14:15:04.1323335Z","key2":"2022-04-11T14:15:04.1323335Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:15:04.1479441Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:15:04.1479441Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:15:04.0385481Z","primaryEndpoints":{"dfs":"https://clitests6o6rszcmwmsvtcwx.dfs.core.windows.net/","web":"https://clitests6o6rszcmwmsvtcwx.z2.web.core.windows.net/","blob":"https://clitests6o6rszcmwmsvtcwx.blob.core.windows.net/","queue":"https://clitests6o6rszcmwmsvtcwx.queue.core.windows.net/","table":"https://clitests6o6rszcmwmsvtcwx.table.core.windows.net/","file":"https://clitests6o6rszcmwmsvtcwx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest62jxvr4odko5gn5tjo4z7ypmirid6zm72g3ah6zg25qh5r5xve5fhikdcnjpxvsaikhl/providers/Microsoft.Storage/storageAccounts/clitestst2iwgltnfj4zoiva","name":"clitestst2iwgltnfj4zoiva","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-27T01:58:18.2723177Z","key2":"2021-08-27T01:58:18.2723177Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-27T01:58:18.2723177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-27T01:58:18.2410749Z","primaryEndpoints":{"dfs":"https://clitestst2iwgltnfj4zoiva.dfs.core.windows.net/","web":"https://clitestst2iwgltnfj4zoiva.z2.web.core.windows.net/","blob":"https://clitestst2iwgltnfj4zoiva.blob.core.windows.net/","queue":"https://clitestst2iwgltnfj4zoiva.queue.core.windows.net/","table":"https://clitestst2iwgltnfj4zoiva.table.core.windows.net/","file":"https://clitestst2iwgltnfj4zoiva.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestxk2peoqt7nd76ktof7sub3mkkcldygtt36d3imnwjd5clletodypibd5uaglpdk44yjm/providers/Microsoft.Storage/storageAccounts/clitestu6whdalngwsksemjs","name":"clitestu6whdalngwsksemjs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-10T02:29:23.5697486Z","key2":"2021-09-10T02:29:23.5697486Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T02:29:23.5697486Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-10T02:29:23.5072536Z","primaryEndpoints":{"dfs":"https://clitestu6whdalngwsksemjs.dfs.core.windows.net/","web":"https://clitestu6whdalngwsksemjs.z2.web.core.windows.net/","blob":"https://clitestu6whdalngwsksemjs.blob.core.windows.net/","queue":"https://clitestu6whdalngwsksemjs.queue.core.windows.net/","table":"https://clitestu6whdalngwsksemjs.table.core.windows.net/","file":"https://clitestu6whdalngwsksemjs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwbzchpbjgcxxskmdhphtbzptfkqdlzhapbqla2v27iw54pevob7yanyz7ppmmigrhtkk/providers/Microsoft.Storage/storageAccounts/clitestvuslwcarkk3sdmgga","name":"clitestvuslwcarkk3sdmgga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-25T23:14:55.4674102Z","key2":"2021-11-25T23:14:55.4674102Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T23:14:55.4674102Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T23:14:55.4674102Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T23:14:55.3892927Z","primaryEndpoints":{"dfs":"https://clitestvuslwcarkk3sdmgga.dfs.core.windows.net/","web":"https://clitestvuslwcarkk3sdmgga.z2.web.core.windows.net/","blob":"https://clitestvuslwcarkk3sdmgga.blob.core.windows.net/","queue":"https://clitestvuslwcarkk3sdmgga.queue.core.windows.net/","table":"https://clitestvuslwcarkk3sdmgga.table.core.windows.net/","file":"https://clitestvuslwcarkk3sdmgga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlriqfcojv6aujusys633edrxi3tkric7e6cvk5wwgjmdg4736dv56w4lwzmdnq5tr3mq/providers/Microsoft.Storage/storageAccounts/clitestw6aumidrfwmoqkzvm","name":"clitestw6aumidrfwmoqkzvm","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:32:38.8527397Z","key2":"2021-11-18T23:32:38.8527397Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:32:38.8527397Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:32:38.7902807Z","primaryEndpoints":{"dfs":"https://clitestw6aumidrfwmoqkzvm.dfs.core.windows.net/","web":"https://clitestw6aumidrfwmoqkzvm.z2.web.core.windows.net/","blob":"https://clitestw6aumidrfwmoqkzvm.blob.core.windows.net/","queue":"https://clitestw6aumidrfwmoqkzvm.queue.core.windows.net/","table":"https://clitestw6aumidrfwmoqkzvm.table.core.windows.net/","file":"https://clitestw6aumidrfwmoqkzvm.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestreufd5cqee3zivebxym7cxi57izubkyszpgf3xlnt4bsit2x6ptggeuh6qiwu4jvwhd5/providers/Microsoft.Storage/storageAccounts/clitestwbzje3s6lhe5qaq5l","name":"clitestwbzje3s6lhe5qaq5l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-23T22:28:23.6667592Z","key2":"2021-12-23T22:28:23.6667592Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:28:23.6822263Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:28:23.6822263Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:28:23.5884630Z","primaryEndpoints":{"dfs":"https://clitestwbzje3s6lhe5qaq5l.dfs.core.windows.net/","web":"https://clitestwbzje3s6lhe5qaq5l.z2.web.core.windows.net/","blob":"https://clitestwbzje3s6lhe5qaq5l.blob.core.windows.net/","queue":"https://clitestwbzje3s6lhe5qaq5l.queue.core.windows.net/","table":"https://clitestwbzje3s6lhe5qaq5l.table.core.windows.net/","file":"https://clitestwbzje3s6lhe5qaq5l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttlschpyugymorheodsulam7yhpwylijzpbmjr3phwwis4vj2rx5elxcjkb236fcnumx3/providers/Microsoft.Storage/storageAccounts/clitestwv22naweyfr4m5rga","name":"clitestwv22naweyfr4m5rga","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-01T19:54:26.9185866Z","key2":"2021-11-01T19:54:26.9185866Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-01T19:54:26.9185866Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-01T19:54:26.8717369Z","primaryEndpoints":{"dfs":"https://clitestwv22naweyfr4m5rga.dfs.core.windows.net/","web":"https://clitestwv22naweyfr4m5rga.z2.web.core.windows.net/","blob":"https://clitestwv22naweyfr4m5rga.blob.core.windows.net/","queue":"https://clitestwv22naweyfr4m5rga.queue.core.windows.net/","table":"https://clitestwv22naweyfr4m5rga.table.core.windows.net/","file":"https://clitestwv22naweyfr4m5rga.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth52efeutldrxowe5cfayjvk4zhpypdmky6fyppzro5r3ldqu7dwf2ca6jf3lqm4eijf6/providers/Microsoft.Storage/storageAccounts/clitestx5fskzfbidzs4kqmu","name":"clitestx5fskzfbidzs4kqmu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-05T08:48:16.0575682Z","key2":"2021-11-05T08:48:16.0575682Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-05T08:48:16.0575682Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-05T08:48:15.9794412Z","primaryEndpoints":{"dfs":"https://clitestx5fskzfbidzs4kqmu.dfs.core.windows.net/","web":"https://clitestx5fskzfbidzs4kqmu.z2.web.core.windows.net/","blob":"https://clitestx5fskzfbidzs4kqmu.blob.core.windows.net/","queue":"https://clitestx5fskzfbidzs4kqmu.queue.core.windows.net/","table":"https://clitestx5fskzfbidzs4kqmu.table.core.windows.net/","file":"https://clitestx5fskzfbidzs4kqmu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsfkcdnkd2xngtxma6yip2hrfxcljs3dtv4p6teg457mlhyruamnayv7ejk3e264tbsue/providers/Microsoft.Storage/storageAccounts/clitestxc5fs7nomr2dnwv5h","name":"clitestxc5fs7nomr2dnwv5h","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-16T23:57:25.5009113Z","key2":"2021-12-16T23:57:25.5009113Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:57:25.5009113Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:57:25.5009113Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:57:25.4227819Z","primaryEndpoints":{"dfs":"https://clitestxc5fs7nomr2dnwv5h.dfs.core.windows.net/","web":"https://clitestxc5fs7nomr2dnwv5h.z2.web.core.windows.net/","blob":"https://clitestxc5fs7nomr2dnwv5h.blob.core.windows.net/","queue":"https://clitestxc5fs7nomr2dnwv5h.queue.core.windows.net/","table":"https://clitestxc5fs7nomr2dnwv5h.table.core.windows.net/","file":"https://clitestxc5fs7nomr2dnwv5h.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestuapcrhybuggyatduocbydgd2xgdyuaj26awe5rksptnbf2uz7rbjt5trh6gj3q3jv23u/providers/Microsoft.Storage/storageAccounts/clitestxueoehnvkkqr6h434","name":"clitestxueoehnvkkqr6h434","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T22:09:26.4376958Z","key2":"2022-03-17T22:09:26.4376958Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T22:09:26.4376958Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T22:09:26.4376958Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T22:09:26.3282727Z","primaryEndpoints":{"dfs":"https://clitestxueoehnvkkqr6h434.dfs.core.windows.net/","web":"https://clitestxueoehnvkkqr6h434.z2.web.core.windows.net/","blob":"https://clitestxueoehnvkkqr6h434.blob.core.windows.net/","queue":"https://clitestxueoehnvkkqr6h434.queue.core.windows.net/","table":"https://clitestxueoehnvkkqr6h434.table.core.windows.net/","file":"https://clitestxueoehnvkkqr6h434.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestlnzg2rscuyweetdgvywse35jkhd3s7gay3wnjzoyqojyq6i3iw42uycss45mj52zitnl/providers/Microsoft.Storage/storageAccounts/clitestzarcstbcgg3yqinfg","name":"clitestzarcstbcgg3yqinfg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-30T02:23:46.1127669Z","key2":"2021-07-30T02:23:46.1127669Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-30T02:23:46.1127669Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-30T02:23:46.0658902Z","primaryEndpoints":{"dfs":"https://clitestzarcstbcgg3yqinfg.dfs.core.windows.net/","web":"https://clitestzarcstbcgg3yqinfg.z2.web.core.windows.net/","blob":"https://clitestzarcstbcgg3yqinfg.blob.core.windows.net/","queue":"https://clitestzarcstbcgg3yqinfg.queue.core.windows.net/","table":"https://clitestzarcstbcgg3yqinfg.table.core.windows.net/","file":"https://clitestzarcstbcgg3yqinfg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitests76ucvib4b5fgppqu5ciu6pknaatlexv4uk736sdtnk6osbv4idvaj7rh5ojgrjomo2z/providers/Microsoft.Storage/storageAccounts/version2unrg7v6iwv7y5m5l","name":"version2unrg7v6iwv7y5m5l","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T21:39:50.1062976Z","key2":"2022-03-17T21:39:50.1062976Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T21:39:50.1062976Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T21:39:50.1062976Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T21:39:50.0281735Z","primaryEndpoints":{"dfs":"https://version2unrg7v6iwv7y5m5l.dfs.core.windows.net/","web":"https://version2unrg7v6iwv7y5m5l.z2.web.core.windows.net/","blob":"https://version2unrg7v6iwv7y5m5l.blob.core.windows.net/","queue":"https://version2unrg7v6iwv7y5m5l.queue.core.windows.net/","table":"https://version2unrg7v6iwv7y5m5l.table.core.windows.net/","file":"https://version2unrg7v6iwv7y5m5l.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest3tibadds5lu5w2l7eglv3fx6fle6tcdlmpnjyebby5bb5xfopqkxdqumpgyd2feunb2d/providers/Microsoft.Storage/storageAccounts/version4dicc6l6ho3regfk6","name":"version4dicc6l6ho3regfk6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-11T14:00:21.7678463Z","key2":"2022-04-11T14:00:21.7678463Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:00:21.7678463Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T14:00:21.7678463Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T14:00:21.6584988Z","primaryEndpoints":{"dfs":"https://version4dicc6l6ho3regfk6.dfs.core.windows.net/","web":"https://version4dicc6l6ho3regfk6.z2.web.core.windows.net/","blob":"https://version4dicc6l6ho3regfk6.blob.core.windows.net/","queue":"https://version4dicc6l6ho3regfk6.queue.core.windows.net/","table":"https://version4dicc6l6ho3regfk6.table.core.windows.net/","file":"https://version4dicc6l6ho3regfk6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestousee7s5ti3bvgsldu3tad76cdv45lzvkwlnece46ufo4hjl22dj6kmqdpkbeba6i7wa/providers/Microsoft.Storage/storageAccounts/version5s35huoclfr4t2omd","name":"version5s35huoclfr4t2omd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T09:39:15.6662132Z","key2":"2022-02-24T09:39:15.6662132Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.6817670Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T09:39:15.6817670Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T09:39:15.6036637Z","primaryEndpoints":{"dfs":"https://version5s35huoclfr4t2omd.dfs.core.windows.net/","web":"https://version5s35huoclfr4t2omd.z2.web.core.windows.net/","blob":"https://version5s35huoclfr4t2omd.blob.core.windows.net/","queue":"https://version5s35huoclfr4t2omd.queue.core.windows.net/","table":"https://version5s35huoclfr4t2omd.table.core.windows.net/","file":"https://version5s35huoclfr4t2omd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrbeoeyuczwyiitagnjquifkcu7l7pbiofoqpq5dvnyw6t2g23cidvmrfpsiitzgvvltc/providers/Microsoft.Storage/storageAccounts/versionbxfkluj64kluccc4m","name":"versionbxfkluj64kluccc4m","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T03:38:23.7393566Z","key2":"2022-03-18T03:38:23.7393566Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:38:23.7393566Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T03:38:23.7393566Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T03:38:23.6299381Z","primaryEndpoints":{"dfs":"https://versionbxfkluj64kluccc4m.dfs.core.windows.net/","web":"https://versionbxfkluj64kluccc4m.z2.web.core.windows.net/","blob":"https://versionbxfkluj64kluccc4m.blob.core.windows.net/","queue":"https://versionbxfkluj64kluccc4m.queue.core.windows.net/","table":"https://versionbxfkluj64kluccc4m.table.core.windows.net/","file":"https://versionbxfkluj64kluccc4m.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5feodovurwzsilp6pwlmafeektwxlwijkstn52zi6kxelzeryrhtj3dykralburkfbe2/providers/Microsoft.Storage/storageAccounts/versionc4lto7lppswuwqswn","name":"versionc4lto7lppswuwqswn","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-01-07T00:11:02.6858446Z","key2":"2022-01-07T00:11:02.6858446Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:11:02.6858446Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-07T00:11:02.6858446Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-07T00:11:02.5920986Z","primaryEndpoints":{"dfs":"https://versionc4lto7lppswuwqswn.dfs.core.windows.net/","web":"https://versionc4lto7lppswuwqswn.z2.web.core.windows.net/","blob":"https://versionc4lto7lppswuwqswn.blob.core.windows.net/","queue":"https://versionc4lto7lppswuwqswn.queue.core.windows.net/","table":"https://versionc4lto7lppswuwqswn.table.core.windows.net/","file":"https://versionc4lto7lppswuwqswn.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2zdiilm3ugwy2dlv37bhlyvyf6wpljit7d6o3zepyw6fkroztx53ouqjyhwp4dkp4jzv/providers/Microsoft.Storage/storageAccounts/versioncal7ire65zyi6zhnx","name":"versioncal7ire65zyi6zhnx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-03T23:20:37.4509722Z","key2":"2022-03-03T23:20:37.4509722Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:20:37.4666237Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-03T23:20:37.4666237Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-03T23:20:37.3728352Z","primaryEndpoints":{"dfs":"https://versioncal7ire65zyi6zhnx.dfs.core.windows.net/","web":"https://versioncal7ire65zyi6zhnx.z2.web.core.windows.net/","blob":"https://versioncal7ire65zyi6zhnx.blob.core.windows.net/","queue":"https://versioncal7ire65zyi6zhnx.queue.core.windows.net/","table":"https://versioncal7ire65zyi6zhnx.table.core.windows.net/","file":"https://versioncal7ire65zyi6zhnx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest24txadv4waeoqfrbzw4q3e333id45y7nnpuv5vvovws7fhrkesqbuul5chzpu6flgvfk/providers/Microsoft.Storage/storageAccounts/versionclxgou4idgatxjr77","name":"versionclxgou4idgatxjr77","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T09:25:37.7565157Z","key2":"2022-03-16T09:25:37.7565157Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:25:37.7565157Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T09:25:37.7565157Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T09:25:37.6627583Z","primaryEndpoints":{"dfs":"https://versionclxgou4idgatxjr77.dfs.core.windows.net/","web":"https://versionclxgou4idgatxjr77.z2.web.core.windows.net/","blob":"https://versionclxgou4idgatxjr77.blob.core.windows.net/","queue":"https://versionclxgou4idgatxjr77.queue.core.windows.net/","table":"https://versionclxgou4idgatxjr77.table.core.windows.net/","file":"https://versionclxgou4idgatxjr77.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestdrnnmqa4sgcpa7frydav5ijhdtawsxmmdwnh5rj7r5xhveix5ns7wms6wesgxwc5pu3o/providers/Microsoft.Storage/storageAccounts/versioncq5cycygofi7d6pri","name":"versioncq5cycygofi7d6pri","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-05T23:00:43.4900067Z","key2":"2022-05-05T23:00:43.4900067Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:00:43.4900067Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-05T23:00:43.4900067Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-05T23:00:43.3650110Z","primaryEndpoints":{"dfs":"https://versioncq5cycygofi7d6pri.dfs.core.windows.net/","web":"https://versioncq5cycygofi7d6pri.z2.web.core.windows.net/","blob":"https://versioncq5cycygofi7d6pri.blob.core.windows.net/","queue":"https://versioncq5cycygofi7d6pri.queue.core.windows.net/","table":"https://versioncq5cycygofi7d6pri.table.core.windows.net/","file":"https://versioncq5cycygofi7d6pri.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsk4lc6dssbjjgkmxuk6phvsahow4dkmxkix2enlwuhhplj3lgqof5kr6leepjdyea3pl/providers/Microsoft.Storage/storageAccounts/versioncuioqcwvj2iwjmldg","name":"versioncuioqcwvj2iwjmldg","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T08:54:58.9739508Z","key2":"2022-03-16T08:54:58.9739508Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T08:54:58.9895499Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T08:54:58.9895499Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T08:54:58.9114548Z","primaryEndpoints":{"dfs":"https://versioncuioqcwvj2iwjmldg.dfs.core.windows.net/","web":"https://versioncuioqcwvj2iwjmldg.z2.web.core.windows.net/","blob":"https://versioncuioqcwvj2iwjmldg.blob.core.windows.net/","queue":"https://versioncuioqcwvj2iwjmldg.queue.core.windows.net/","table":"https://versioncuioqcwvj2iwjmldg.table.core.windows.net/","file":"https://versioncuioqcwvj2iwjmldg.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsgar4qjt34qhsuj6hez7kimz6mfle7eczvq5bfsh7xpilagusjstjetu65f2u6vh5qeb/providers/Microsoft.Storage/storageAccounts/versiond3oz7jhpapoxnxxci","name":"versiond3oz7jhpapoxnxxci","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-26T08:45:21.5394973Z","key2":"2022-04-26T08:45:21.5394973Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:45:21.5394973Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-26T08:45:21.5394973Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-26T08:45:21.4301251Z","primaryEndpoints":{"dfs":"https://versiond3oz7jhpapoxnxxci.dfs.core.windows.net/","web":"https://versiond3oz7jhpapoxnxxci.z2.web.core.windows.net/","blob":"https://versiond3oz7jhpapoxnxxci.blob.core.windows.net/","queue":"https://versiond3oz7jhpapoxnxxci.queue.core.windows.net/","table":"https://versiond3oz7jhpapoxnxxci.table.core.windows.net/","file":"https://versiond3oz7jhpapoxnxxci.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesth6t5wqiulzt7vmszohprfrvkph7c226cgihbujtdvljcbvc4d4zwjbhwjscbts34c7up/providers/Microsoft.Storage/storageAccounts/versiondj27wf2pbuqyzilmd","name":"versiondj27wf2pbuqyzilmd","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-11T13:45:18.9773986Z","key2":"2022-04-11T13:45:18.9773986Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T13:45:18.9773986Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-11T13:45:18.9773986Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-11T13:45:18.8834129Z","primaryEndpoints":{"dfs":"https://versiondj27wf2pbuqyzilmd.dfs.core.windows.net/","web":"https://versiondj27wf2pbuqyzilmd.z2.web.core.windows.net/","blob":"https://versiondj27wf2pbuqyzilmd.blob.core.windows.net/","queue":"https://versiondj27wf2pbuqyzilmd.queue.core.windows.net/","table":"https://versiondj27wf2pbuqyzilmd.table.core.windows.net/","file":"https://versiondj27wf2pbuqyzilmd.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfyxdmvu32prroldn2p24a3iyr2phi7o22i26szwv2kuwh6zaj4rdet7ms5gdjnam2egt/providers/Microsoft.Storage/storageAccounts/versiondjhixg3cqipgjsmx4","name":"versiondjhixg3cqipgjsmx4","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T07:41:23.9995280Z","key2":"2022-03-17T07:41:23.9995280Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:41:23.9995280Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T07:41:23.9995280Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T07:41:23.9213706Z","primaryEndpoints":{"dfs":"https://versiondjhixg3cqipgjsmx4.dfs.core.windows.net/","web":"https://versiondjhixg3cqipgjsmx4.z2.web.core.windows.net/","blob":"https://versiondjhixg3cqipgjsmx4.blob.core.windows.net/","queue":"https://versiondjhixg3cqipgjsmx4.queue.core.windows.net/","table":"https://versiondjhixg3cqipgjsmx4.table.core.windows.net/","file":"https://versiondjhixg3cqipgjsmx4.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestchwod5nqxyebiyl6j4s2afrqmitcdhgmxhxszsf4wv6qwws7hvhvget5u2i2cua63cxc/providers/Microsoft.Storage/storageAccounts/versiondo3arjclzct3ahufa","name":"versiondo3arjclzct3ahufa","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-24T22:34:36.9447831Z","key2":"2022-02-24T22:34:36.9447831Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:34:36.9447831Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-24T22:34:36.9447831Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-24T22:34:36.8510092Z","primaryEndpoints":{"dfs":"https://versiondo3arjclzct3ahufa.dfs.core.windows.net/","web":"https://versiondo3arjclzct3ahufa.z2.web.core.windows.net/","blob":"https://versiondo3arjclzct3ahufa.blob.core.windows.net/","queue":"https://versiondo3arjclzct3ahufa.queue.core.windows.net/","table":"https://versiondo3arjclzct3ahufa.table.core.windows.net/","file":"https://versiondo3arjclzct3ahufa.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestwmea2y23rvqprapww6ikfm6jk7abomcuhzngx3bltkme33xh2xkdgmn4n2fwcljqw3wv/providers/Microsoft.Storage/storageAccounts/versiondufx3et3bnjtg4xch","name":"versiondufx3et3bnjtg4xch","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-14T09:15:36.8221632Z","key2":"2022-04-14T09:15:36.8221632Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T09:15:36.8221632Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T09:15:36.8221632Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T09:15:36.7127958Z","primaryEndpoints":{"dfs":"https://versiondufx3et3bnjtg4xch.dfs.core.windows.net/","web":"https://versiondufx3et3bnjtg4xch.z2.web.core.windows.net/","blob":"https://versiondufx3et3bnjtg4xch.blob.core.windows.net/","queue":"https://versiondufx3et3bnjtg4xch.queue.core.windows.net/","table":"https://versiondufx3et3bnjtg4xch.table.core.windows.net/","file":"https://versiondufx3et3bnjtg4xch.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestakpkuxez73vyn36t4gn7rzxofnqwgm72bcmj4cdcadyalqklc2kyfx3qcfe3x2botivf/providers/Microsoft.Storage/storageAccounts/versionehqwmpnsaeybdcd4s","name":"versionehqwmpnsaeybdcd4s","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-25T22:59:30.3393037Z","key2":"2021-11-25T22:59:30.3393037Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T22:59:30.3549542Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-25T22:59:30.3549542Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-25T22:59:30.2768393Z","primaryEndpoints":{"dfs":"https://versionehqwmpnsaeybdcd4s.dfs.core.windows.net/","web":"https://versionehqwmpnsaeybdcd4s.z2.web.core.windows.net/","blob":"https://versionehqwmpnsaeybdcd4s.blob.core.windows.net/","queue":"https://versionehqwmpnsaeybdcd4s.queue.core.windows.net/","table":"https://versionehqwmpnsaeybdcd4s.table.core.windows.net/","file":"https://versionehqwmpnsaeybdcd4s.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesterdlb62puqdedjbhf3za3vxsu7igmsj447yliowotbxtokfcxj6geys4tgngzk5iuppn/providers/Microsoft.Storage/storageAccounts/versionen7upolksoryxwxnb","name":"versionen7upolksoryxwxnb","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-16T23:42:25.7694875Z","key2":"2021-12-16T23:42:25.7694875Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:42:25.7851037Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-16T23:42:25.7851037Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-16T23:42:25.7069810Z","primaryEndpoints":{"dfs":"https://versionen7upolksoryxwxnb.dfs.core.windows.net/","web":"https://versionen7upolksoryxwxnb.z2.web.core.windows.net/","blob":"https://versionen7upolksoryxwxnb.blob.core.windows.net/","queue":"https://versionen7upolksoryxwxnb.queue.core.windows.net/","table":"https://versionen7upolksoryxwxnb.table.core.windows.net/","file":"https://versionen7upolksoryxwxnb.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrvgfrlua5ai2leiutip26a27qxs2lzedu3g6gjrqjzi3rna2yxcinlc5ioxhhfvnx5rv/providers/Microsoft.Storage/storageAccounts/versiongdbkjcemb56eyu3rj","name":"versiongdbkjcemb56eyu3rj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-18T23:17:17.2960150Z","key2":"2021-11-18T23:17:17.2960150Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-18T23:17:17.2960150Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-18T23:17:17.2335295Z","primaryEndpoints":{"dfs":"https://versiongdbkjcemb56eyu3rj.dfs.core.windows.net/","web":"https://versiongdbkjcemb56eyu3rj.z2.web.core.windows.net/","blob":"https://versiongdbkjcemb56eyu3rj.blob.core.windows.net/","queue":"https://versiongdbkjcemb56eyu3rj.queue.core.windows.net/","table":"https://versiongdbkjcemb56eyu3rj.table.core.windows.net/","file":"https://versiongdbkjcemb56eyu3rj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestylszwk3tqxigxfm3ongkbbgoelhfjiyrqqybpleivk3e7qa7gylocnj7rkod4jivp33h/providers/Microsoft.Storage/storageAccounts/versionha6yygjfdivfeud5k","name":"versionha6yygjfdivfeud5k","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-21T23:02:51.1629635Z","key2":"2022-04-21T23:02:51.1629635Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:02:51.1629635Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-21T23:02:51.1629635Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-21T23:02:51.0535636Z","primaryEndpoints":{"dfs":"https://versionha6yygjfdivfeud5k.dfs.core.windows.net/","web":"https://versionha6yygjfdivfeud5k.z2.web.core.windows.net/","blob":"https://versionha6yygjfdivfeud5k.blob.core.windows.net/","queue":"https://versionha6yygjfdivfeud5k.queue.core.windows.net/","table":"https://versionha6yygjfdivfeud5k.table.core.windows.net/","file":"https://versionha6yygjfdivfeud5k.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestnsw32miijgjmandsqepzbytqsxe2dbpfuh3t2d2u7saewxrnoilajjocllnjxt45ggjc/providers/Microsoft.Storage/storageAccounts/versionhf53xzmbt3fwu3kn3","name":"versionhf53xzmbt3fwu3kn3","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:29:06.2474527Z","key2":"2021-09-07T02:29:06.2474527Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:29:06.2474527Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:29:06.1849281Z","primaryEndpoints":{"dfs":"https://versionhf53xzmbt3fwu3kn3.dfs.core.windows.net/","web":"https://versionhf53xzmbt3fwu3kn3.z2.web.core.windows.net/","blob":"https://versionhf53xzmbt3fwu3kn3.blob.core.windows.net/","queue":"https://versionhf53xzmbt3fwu3kn3.queue.core.windows.net/","table":"https://versionhf53xzmbt3fwu3kn3.table.core.windows.net/","file":"https://versionhf53xzmbt3fwu3kn3.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest2d5fjdmfhy7kkhkwbqo7gngf6a2wlnvvaku7gxkwitz7vnnppvgothckppdsxhv3nem2/providers/Microsoft.Storage/storageAccounts/versionhh4uq45sysgx6awnt","name":"versionhh4uq45sysgx6awnt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-14T23:26:38.4670192Z","key2":"2022-04-14T23:26:38.4670192Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:26:38.4670192Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-14T23:26:38.4670192Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-14T23:26:38.3576837Z","primaryEndpoints":{"dfs":"https://versionhh4uq45sysgx6awnt.dfs.core.windows.net/","web":"https://versionhh4uq45sysgx6awnt.z2.web.core.windows.net/","blob":"https://versionhh4uq45sysgx6awnt.blob.core.windows.net/","queue":"https://versionhh4uq45sysgx6awnt.queue.core.windows.net/","table":"https://versionhh4uq45sysgx6awnt.table.core.windows.net/","file":"https://versionhh4uq45sysgx6awnt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliteste6lnfkdei2mzinyplhajo2t5ly327gwrwmuf5mrj74avle2b2kf4ulu4u3zlxxwts4ab/providers/Microsoft.Storage/storageAccounts/versionib6wdvsaxftddhtmh","name":"versionib6wdvsaxftddhtmh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-28T22:27:01.2291330Z","key2":"2022-04-28T22:27:01.2291330Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:27:01.2447470Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-28T22:27:01.2447470Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-28T22:27:01.1041285Z","primaryEndpoints":{"dfs":"https://versionib6wdvsaxftddhtmh.dfs.core.windows.net/","web":"https://versionib6wdvsaxftddhtmh.z2.web.core.windows.net/","blob":"https://versionib6wdvsaxftddhtmh.blob.core.windows.net/","queue":"https://versionib6wdvsaxftddhtmh.queue.core.windows.net/","table":"https://versionib6wdvsaxftddhtmh.table.core.windows.net/","file":"https://versionib6wdvsaxftddhtmh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest74lh5dcwdivjzpbyoqvafkpvnfg3tregvqtf456g3udapzlfl4jyqlh3sde26d2jh3x6/providers/Microsoft.Storage/storageAccounts/versioniuezathg3v5v754k7","name":"versioniuezathg3v5v754k7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-18T05:42:37.9837177Z","key2":"2022-04-18T05:42:37.9837177Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T05:42:37.9837177Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-18T05:42:37.9837177Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-18T05:42:37.8743443Z","primaryEndpoints":{"dfs":"https://versioniuezathg3v5v754k7.dfs.core.windows.net/","web":"https://versioniuezathg3v5v754k7.z2.web.core.windows.net/","blob":"https://versioniuezathg3v5v754k7.blob.core.windows.net/","queue":"https://versioniuezathg3v5v754k7.queue.core.windows.net/","table":"https://versioniuezathg3v5v754k7.table.core.windows.net/","file":"https://versioniuezathg3v5v754k7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestcdvjnuor7heyx55wxz6h4jdaxblpvnyfdk47a7ameycswklee6pxoev7idm4m644qisg/providers/Microsoft.Storage/storageAccounts/versionizwzijfbdy5w6mvbu","name":"versionizwzijfbdy5w6mvbu","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-25T00:18:06.3765854Z","key2":"2022-02-25T00:18:06.3765854Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:18:06.3921844Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-25T00:18:06.3921844Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-25T00:18:06.2828372Z","primaryEndpoints":{"dfs":"https://versionizwzijfbdy5w6mvbu.dfs.core.windows.net/","web":"https://versionizwzijfbdy5w6mvbu.z2.web.core.windows.net/","blob":"https://versionizwzijfbdy5w6mvbu.blob.core.windows.net/","queue":"https://versionizwzijfbdy5w6mvbu.queue.core.windows.net/","table":"https://versionizwzijfbdy5w6mvbu.table.core.windows.net/","file":"https://versionizwzijfbdy5w6mvbu.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestfjg3rxzubogi6qrblsgw3mmesxhn3pxjg27a5ktf7gnrxrnhwlrylljjshcwyyghqxbu/providers/Microsoft.Storage/storageAccounts/versionko6ksgiyhw5bzflr7","name":"versionko6ksgiyhw5bzflr7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-15T09:44:43.3485045Z","key2":"2022-04-15T09:44:43.3485045Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-15T09:44:43.3485045Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-15T09:44:43.3485045Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-15T09:44:43.2547236Z","primaryEndpoints":{"dfs":"https://versionko6ksgiyhw5bzflr7.dfs.core.windows.net/","web":"https://versionko6ksgiyhw5bzflr7.z2.web.core.windows.net/","blob":"https://versionko6ksgiyhw5bzflr7.blob.core.windows.net/","queue":"https://versionko6ksgiyhw5bzflr7.queue.core.windows.net/","table":"https://versionko6ksgiyhw5bzflr7.table.core.windows.net/","file":"https://versionko6ksgiyhw5bzflr7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkzfdhprmzadvpjklrd7656pshnk33mbj6omwyff2jzqjatbmhegyprcfs7wbi4ypmvef/providers/Microsoft.Storage/storageAccounts/versionm5vzvntn2srqhkssx","name":"versionm5vzvntn2srqhkssx","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T23:15:38.7806886Z","key2":"2021-12-09T23:15:38.7806886Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:15:38.7806886Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T23:15:38.7806886Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T23:15:38.7025605Z","primaryEndpoints":{"dfs":"https://versionm5vzvntn2srqhkssx.dfs.core.windows.net/","web":"https://versionm5vzvntn2srqhkssx.z2.web.core.windows.net/","blob":"https://versionm5vzvntn2srqhkssx.blob.core.windows.net/","queue":"https://versionm5vzvntn2srqhkssx.queue.core.windows.net/","table":"https://versionm5vzvntn2srqhkssx.table.core.windows.net/","file":"https://versionm5vzvntn2srqhkssx.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest4ynxfhry5dpkuo3xwssvdbe3iwcxt5ewlnx3lz332nsyd3piqlooviiegb2uplmxnctu/providers/Microsoft.Storage/storageAccounts/versionnaeshhylx7ri7rvhk","name":"versionnaeshhylx7ri7rvhk","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-18T01:17:46.3041863Z","key2":"2022-03-18T01:17:46.3041863Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:17:46.3198179Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-18T01:17:46.3198179Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-18T01:17:46.0698030Z","primaryEndpoints":{"dfs":"https://versionnaeshhylx7ri7rvhk.dfs.core.windows.net/","web":"https://versionnaeshhylx7ri7rvhk.z2.web.core.windows.net/","blob":"https://versionnaeshhylx7ri7rvhk.blob.core.windows.net/","queue":"https://versionnaeshhylx7ri7rvhk.queue.core.windows.net/","table":"https://versionnaeshhylx7ri7rvhk.table.core.windows.net/","file":"https://versionnaeshhylx7ri7rvhk.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestqtov5khibmli5l5qnqxx7sqsiomitv4dy6e7v2p6g6baxo5k7gybvzol2mludvvlt3hk/providers/Microsoft.Storage/storageAccounts/versionncglaxef3bncte6ug","name":"versionncglaxef3bncte6ug","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-09T05:01:00.4631938Z","key2":"2021-12-09T05:01:00.4631938Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:01:00.4631938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-09T05:01:00.4631938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-09T05:01:00.4007471Z","primaryEndpoints":{"dfs":"https://versionncglaxef3bncte6ug.dfs.core.windows.net/","web":"https://versionncglaxef3bncte6ug.z2.web.core.windows.net/","blob":"https://versionncglaxef3bncte6ug.blob.core.windows.net/","queue":"https://versionncglaxef3bncte6ug.queue.core.windows.net/","table":"https://versionncglaxef3bncte6ug.table.core.windows.net/","file":"https://versionncglaxef3bncte6ug.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyex6l2i6otx4eikzzr7rikdz4b6rezhqeg6mnzwvtof4vpxkcw34rd7hwpk7q5ltnrxp/providers/Microsoft.Storage/storageAccounts/versionncoq7gv5mbp4o2uf6","name":"versionncoq7gv5mbp4o2uf6","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-15T06:47:03.1566686Z","key2":"2021-10-15T06:47:03.1566686Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-15T06:47:03.1723019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-15T06:47:03.0785915Z","primaryEndpoints":{"dfs":"https://versionncoq7gv5mbp4o2uf6.dfs.core.windows.net/","web":"https://versionncoq7gv5mbp4o2uf6.z2.web.core.windows.net/","blob":"https://versionncoq7gv5mbp4o2uf6.blob.core.windows.net/","queue":"https://versionncoq7gv5mbp4o2uf6.queue.core.windows.net/","table":"https://versionncoq7gv5mbp4o2uf6.table.core.windows.net/","file":"https://versionncoq7gv5mbp4o2uf6.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestvexlopurtffpw44qelwzhnrj4hrri453i57dssogm2nrq3tgb4gdctqnh22two36b4r4/providers/Microsoft.Storage/storageAccounts/versiono3puxbh7aoleprgrj","name":"versiono3puxbh7aoleprgrj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-04-07T22:54:30.4927734Z","key2":"2022-04-07T22:54:30.4927734Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T22:54:30.4927734Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-04-07T22:54:30.4927734Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-04-07T22:54:30.3834786Z","primaryEndpoints":{"dfs":"https://versiono3puxbh7aoleprgrj.dfs.core.windows.net/","web":"https://versiono3puxbh7aoleprgrj.z2.web.core.windows.net/","blob":"https://versiono3puxbh7aoleprgrj.blob.core.windows.net/","queue":"https://versiono3puxbh7aoleprgrj.queue.core.windows.net/","table":"https://versiono3puxbh7aoleprgrj.table.core.windows.net/","file":"https://versiono3puxbh7aoleprgrj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest5qgbjmgp4dbfryqs33skw2pkptk2sdmoqsw6nqonzmeekbq3ovley42itnpj4yfej5yi/providers/Microsoft.Storage/storageAccounts/versionoojtzpigw27c2rlwi","name":"versionoojtzpigw27c2rlwi","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-30T22:31:21.7608674Z","key2":"2021-12-30T22:31:21.7608674Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:31:21.7765100Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T22:31:21.7765100Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-30T22:31:21.4483344Z","primaryEndpoints":{"dfs":"https://versionoojtzpigw27c2rlwi.dfs.core.windows.net/","web":"https://versionoojtzpigw27c2rlwi.z2.web.core.windows.net/","blob":"https://versionoojtzpigw27c2rlwi.blob.core.windows.net/","queue":"https://versionoojtzpigw27c2rlwi.queue.core.windows.net/","table":"https://versionoojtzpigw27c2rlwi.table.core.windows.net/","file":"https://versionoojtzpigw27c2rlwi.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyxq5yt6z4or5ddvyvubtdjn73mslv25s4bqqme3ljmj6jsaagbmyn376m3cdex35tubw/providers/Microsoft.Storage/storageAccounts/versionqp3efyteboplomp5w","name":"versionqp3efyteboplomp5w","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:20:09.3003824Z","key2":"2021-09-07T02:20:09.3003824Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:20:09.3003824Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:20:09.2378807Z","primaryEndpoints":{"dfs":"https://versionqp3efyteboplomp5w.dfs.core.windows.net/","web":"https://versionqp3efyteboplomp5w.z2.web.core.windows.net/","blob":"https://versionqp3efyteboplomp5w.blob.core.windows.net/","queue":"https://versionqp3efyteboplomp5w.queue.core.windows.net/","table":"https://versionqp3efyteboplomp5w.table.core.windows.net/","file":"https://versionqp3efyteboplomp5w.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest27tntypkdnlo3adbzt7qqcx3detlxgtxnuxhaxdgobws4bjc26vshca2qezntlnmpuup/providers/Microsoft.Storage/storageAccounts/versionryihikjyurp5tntba","name":"versionryihikjyurp5tntba","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-11T22:07:42.2418545Z","key2":"2021-11-11T22:07:42.2418545Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-11T22:07:42.2418545Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-11T22:07:42.1637179Z","primaryEndpoints":{"dfs":"https://versionryihikjyurp5tntba.dfs.core.windows.net/","web":"https://versionryihikjyurp5tntba.z2.web.core.windows.net/","blob":"https://versionryihikjyurp5tntba.blob.core.windows.net/","queue":"https://versionryihikjyurp5tntba.queue.core.windows.net/","table":"https://versionryihikjyurp5tntba.table.core.windows.net/","file":"https://versionryihikjyurp5tntba.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestz4bcht3lymqfffkatndjcle4qf567sbk5b3hfcoqhkrfgghei6jeqgan2zr2i2j5fbtq/providers/Microsoft.Storage/storageAccounts/versions3jowsvxiiqegyrbr","name":"versions3jowsvxiiqegyrbr","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-23T22:12:49.9938938Z","key2":"2021-12-23T22:12:49.9938938Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:12:49.9938938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-23T22:12:49.9938938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-23T22:12:49.9157469Z","primaryEndpoints":{"dfs":"https://versions3jowsvxiiqegyrbr.dfs.core.windows.net/","web":"https://versions3jowsvxiiqegyrbr.z2.web.core.windows.net/","blob":"https://versions3jowsvxiiqegyrbr.blob.core.windows.net/","queue":"https://versions3jowsvxiiqegyrbr.queue.core.windows.net/","table":"https://versions3jowsvxiiqegyrbr.table.core.windows.net/","file":"https://versions3jowsvxiiqegyrbr.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesturbzqfflmkkupfwgtkutwvdy5nte5rec7neu6eyya4kahyepssopgq72mzxl54g7h2pt/providers/Microsoft.Storage/storageAccounts/versionscknbekpvmwrjeznt","name":"versionscknbekpvmwrjeznt","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-10-28T02:39:44.7553582Z","key2":"2021-10-28T02:39:44.7553582Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T02:39:44.7553582Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T02:39:44.6772068Z","primaryEndpoints":{"dfs":"https://versionscknbekpvmwrjeznt.dfs.core.windows.net/","web":"https://versionscknbekpvmwrjeznt.z2.web.core.windows.net/","blob":"https://versionscknbekpvmwrjeznt.blob.core.windows.net/","queue":"https://versionscknbekpvmwrjeznt.queue.core.windows.net/","table":"https://versionscknbekpvmwrjeznt.table.core.windows.net/","file":"https://versionscknbekpvmwrjeznt.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestd5q64bqhg7etouaunbpihutfyklxtsq6th5x27ddcpkn5ddwaj7yeth7w6vabib2jk36/providers/Microsoft.Storage/storageAccounts/versionsl4dpowre7blcmtnv","name":"versionsl4dpowre7blcmtnv","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-17T13:52:33.1524401Z","key2":"2022-03-17T13:52:33.1524401Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T13:52:33.1682399Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-17T13:52:33.1682399Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-17T13:52:33.0430992Z","primaryEndpoints":{"dfs":"https://versionsl4dpowre7blcmtnv.dfs.core.windows.net/","web":"https://versionsl4dpowre7blcmtnv.z2.web.core.windows.net/","blob":"https://versionsl4dpowre7blcmtnv.blob.core.windows.net/","queue":"https://versionsl4dpowre7blcmtnv.queue.core.windows.net/","table":"https://versionsl4dpowre7blcmtnv.table.core.windows.net/","file":"https://versionsl4dpowre7blcmtnv.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesttfwerdemnnqhnkhq7pesq4g3fy2ms2qei6yjrfucueeqhy74fu5kdcxkbap7znlruizn/providers/Microsoft.Storage/storageAccounts/versionsnhg3s55m22flnaim","name":"versionsnhg3s55m22flnaim","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-28T16:47:35.2710910Z","key2":"2022-02-28T16:47:35.2710910Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T16:47:35.2867568Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-28T16:47:35.2867568Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-28T16:47:35.1773825Z","primaryEndpoints":{"dfs":"https://versionsnhg3s55m22flnaim.dfs.core.windows.net/","web":"https://versionsnhg3s55m22flnaim.z2.web.core.windows.net/","blob":"https://versionsnhg3s55m22flnaim.blob.core.windows.net/","queue":"https://versionsnhg3s55m22flnaim.queue.core.windows.net/","table":"https://versionsnhg3s55m22flnaim.table.core.windows.net/","file":"https://versionsnhg3s55m22flnaim.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest6j4p5hu3qwk67zq467rtwcd2a7paxiwrgpvjuqvw3drzvoz3clyu22h7l3gmkbn2c4oa/providers/Microsoft.Storage/storageAccounts/versionu6gh46ckmtwb2izub","name":"versionu6gh46ckmtwb2izub","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-16T05:28:58.1591481Z","key2":"2022-03-16T05:28:58.1591481Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:28:58.1747873Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-16T05:28:58.1747873Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-16T05:28:58.0654507Z","primaryEndpoints":{"dfs":"https://versionu6gh46ckmtwb2izub.dfs.core.windows.net/","web":"https://versionu6gh46ckmtwb2izub.z2.web.core.windows.net/","blob":"https://versionu6gh46ckmtwb2izub.blob.core.windows.net/","queue":"https://versionu6gh46ckmtwb2izub.queue.core.windows.net/","table":"https://versionu6gh46ckmtwb2izub.table.core.windows.net/","file":"https://versionu6gh46ckmtwb2izub.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitesthjubmr2gcxl7wowm2yz4jtlqknroqoldmrrdz7ijr7kzs3intstr2ag5cuwovsdyfscc/providers/Microsoft.Storage/storageAccounts/versionvndhff7czdxs3e4zs","name":"versionvndhff7czdxs3e4zs","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T22:53:55.3378319Z","key2":"2022-03-31T22:53:55.3378319Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:53:55.3378319Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T22:53:55.3378319Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-31T22:53:55.2284931Z","primaryEndpoints":{"dfs":"https://versionvndhff7czdxs3e4zs.dfs.core.windows.net/","web":"https://versionvndhff7czdxs3e4zs.z2.web.core.windows.net/","blob":"https://versionvndhff7czdxs3e4zs.blob.core.windows.net/","queue":"https://versionvndhff7czdxs3e4zs.queue.core.windows.net/","table":"https://versionvndhff7czdxs3e4zs.table.core.windows.net/","file":"https://versionvndhff7czdxs3e4zs.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestc37roadc7h7ibpejg25elnx5c7th3cjwkmdjmraqd7x4d6afafd67xtrdeammre4vvwz/providers/Microsoft.Storage/storageAccounts/versionvs7l3fj37x7r3omla","name":"versionvs7l3fj37x7r3omla","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-02T23:19:41.5709882Z","key2":"2021-12-02T23:19:41.5709882Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:19:41.5709882Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-02T23:19:41.5709882Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-02T23:19:41.4928817Z","primaryEndpoints":{"dfs":"https://versionvs7l3fj37x7r3omla.dfs.core.windows.net/","web":"https://versionvs7l3fj37x7r3omla.z2.web.core.windows.net/","blob":"https://versionvs7l3fj37x7r3omla.blob.core.windows.net/","queue":"https://versionvs7l3fj37x7r3omla.queue.core.windows.net/","table":"https://versionvs7l3fj37x7r3omla.table.core.windows.net/","file":"https://versionvs7l3fj37x7r3omla.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestrhkyigtoloz2mqogvsddvmbtemvops4dw6kluaww553xqrbl5kwgnpuse5fdom2fq5bd/providers/Microsoft.Storage/storageAccounts/versionvsfin4nwuwcxndawj","name":"versionvsfin4nwuwcxndawj","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:26:57.6350762Z","key2":"2021-09-07T02:26:57.6350762Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:26:57.6350762Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:26:57.5726321Z","primaryEndpoints":{"dfs":"https://versionvsfin4nwuwcxndawj.dfs.core.windows.net/","web":"https://versionvsfin4nwuwcxndawj.z2.web.core.windows.net/","blob":"https://versionvsfin4nwuwcxndawj.blob.core.windows.net/","queue":"https://versionvsfin4nwuwcxndawj.queue.core.windows.net/","table":"https://versionvsfin4nwuwcxndawj.table.core.windows.net/","file":"https://versionvsfin4nwuwcxndawj.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestu2dumyf3mk7jyirvjmsg3w5s3sa7ke6ujncoaf3eo7bowo2bmxpjufa3ww5q66p2u2gb/providers/Microsoft.Storage/storageAccounts/versionwlfh4xbessj73brlz","name":"versionwlfh4xbessj73brlz","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-10T23:46:16.5584572Z","key2":"2022-03-10T23:46:16.5584572Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-10T23:46:16.5584572Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-10T23:46:16.5584572Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-10T23:46:16.4803444Z","primaryEndpoints":{"dfs":"https://versionwlfh4xbessj73brlz.dfs.core.windows.net/","web":"https://versionwlfh4xbessj73brlz.z2.web.core.windows.net/","blob":"https://versionwlfh4xbessj73brlz.blob.core.windows.net/","queue":"https://versionwlfh4xbessj73brlz.queue.core.windows.net/","table":"https://versionwlfh4xbessj73brlz.table.core.windows.net/","file":"https://versionwlfh4xbessj73brlz.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestsknognisu5ofc5kqx2s7pkyd44ypiqggvewtlb44ikbkje77zh4vo2y5c6alllygemol/providers/Microsoft.Storage/storageAccounts/versionwrfq6nydu5kpiyses","name":"versionwrfq6nydu5kpiyses","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-24T23:41:13.3087565Z","key2":"2022-03-24T23:41:13.3087565Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:41:13.3244129Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-24T23:41:13.3244129Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-24T23:41:13.1837898Z","primaryEndpoints":{"dfs":"https://versionwrfq6nydu5kpiyses.dfs.core.windows.net/","web":"https://versionwrfq6nydu5kpiyses.z2.web.core.windows.net/","blob":"https://versionwrfq6nydu5kpiyses.blob.core.windows.net/","queue":"https://versionwrfq6nydu5kpiyses.queue.core.windows.net/","table":"https://versionwrfq6nydu5kpiyses.table.core.windows.net/","file":"https://versionwrfq6nydu5kpiyses.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyvbbewdobz5vnqkoyumrkqbdufktrisug2ukkkvnirbc6frn2hxuvpe7weosgtfc4spk/providers/Microsoft.Storage/storageAccounts/versionymg2k5haow6be3wlh","name":"versionymg2k5haow6be3wlh","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-08T05:20:27.5220722Z","key2":"2021-11-08T05:20:27.5220722Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-08T05:20:27.5220722Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-11-08T05:20:27.4439279Z","primaryEndpoints":{"dfs":"https://versionymg2k5haow6be3wlh.dfs.core.windows.net/","web":"https://versionymg2k5haow6be3wlh.z2.web.core.windows.net/","blob":"https://versionymg2k5haow6be3wlh.blob.core.windows.net/","queue":"https://versionymg2k5haow6be3wlh.queue.core.windows.net/","table":"https://versionymg2k5haow6be3wlh.table.core.windows.net/","file":"https://versionymg2k5haow6be3wlh.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestkngvostxvfzwz7hb2pyqpst4ekovxl4qehicnbufjmoug5injclokanwouejm77muega/providers/Microsoft.Storage/storageAccounts/versionyrdifxty6izovwb6i","name":"versionyrdifxty6izovwb6i","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-07T02:23:07.0385168Z","key2":"2021-09-07T02:23:07.0385168Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-07T02:23:07.0385168Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-07T02:23:06.9760160Z","primaryEndpoints":{"dfs":"https://versionyrdifxty6izovwb6i.dfs.core.windows.net/","web":"https://versionyrdifxty6izovwb6i.z2.web.core.windows.net/","blob":"https://versionyrdifxty6izovwb6i.blob.core.windows.net/","queue":"https://versionyrdifxty6izovwb6i.queue.core.windows.net/","table":"https://versionyrdifxty6izovwb6i.table.core.windows.net/","file":"https://versionyrdifxty6izovwb6i.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestyuxvuaieuwauapmgpekzsx2djnxw7imdd44j7ye2q2bsscuowdlungp4mvqma3k4zdi3/providers/Microsoft.Storage/storageAccounts/versionzlxq5fbnucauv5vo7","name":"versionzlxq5fbnucauv5vo7","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-25T03:40:01.2264205Z","key2":"2022-03-25T03:40:01.2264205Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-25T03:40:01.2264205Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-25T03:40:01.2264205Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-03-25T03:40:01.1169169Z","primaryEndpoints":{"dfs":"https://versionzlxq5fbnucauv5vo7.dfs.core.windows.net/","web":"https://versionzlxq5fbnucauv5vo7.z2.web.core.windows.net/","blob":"https://versionzlxq5fbnucauv5vo7.blob.core.windows.net/","queue":"https://versionzlxq5fbnucauv5vo7.queue.core.windows.net/","table":"https://versionzlxq5fbnucauv5vo7.table.core.windows.net/","file":"https://versionzlxq5fbnucauv5vo7.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitestglnitz57vqvc6itqwridomid64tyuijykukioisnaiyykplrweeehtxiwezec62slafz/providers/Microsoft.Storage/storageAccounts/versionztiuttcba4r3zu4ux","name":"versionztiuttcba4r3zu4ux","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"keyCreationTime":{"key1":"2022-02-23T03:39:19.0719019Z","key2":"2022-02-23T03:39:19.0719019Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:39:19.0719019Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-23T03:39:19.0719019Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-23T03:39:18.9781248Z","primaryEndpoints":{"dfs":"https://versionztiuttcba4r3zu4ux.dfs.core.windows.net/","web":"https://versionztiuttcba4r3zu4ux.z2.web.core.windows.net/","blob":"https://versionztiuttcba4r3zu4ux.blob.core.windows.net/","queue":"https://versionztiuttcba4r3zu4ux.queue.core.windows.net/","table":"https://versionztiuttcba4r3zu4ux.table.core.windows.net/","file":"https://versionztiuttcba4r3zu4ux.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.Storage/storageAccounts/yssaeuap","name":"yssaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-09-06T07:56:33.4932788Z","key2":"2021-09-06T07:56:33.4932788Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-06T07:56:33.5088661Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-06T07:56:33.4151419Z","primaryEndpoints":{"dfs":"https://yssaeuap.dfs.core.windows.net/","web":"https://yssaeuap.z2.web.core.windows.net/","blob":"https://yssaeuap.blob.core.windows.net/","queue":"https://yssaeuap.queue.core.windows.net/","table":"https://yssaeuap.table.core.windows.net/","file":"https://yssaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zhiyihuang-rg-euap/providers/Microsoft.Storage/storageAccounts/zhiyihuangsaeuap","name":"zhiyihuangsaeuap","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"immutableStorageWithVersioning":{"enabled":true},"keyCreationTime":{"key1":"2021-09-24T05:54:33.0930905Z","key2":"2021-09-24T05:54:33.0930905Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-24T05:54:33.1087163Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-09-24T05:54:33.0305911Z","primaryEndpoints":{"dfs":"https://zhiyihuangsaeuap.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap.queue.core.windows.net/","table":"https://zhiyihuangsaeuap.table.core.windows.net/","file":"https://zhiyihuangsaeuap.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available","secondaryLocation":"eastus2euap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://zhiyihuangsaeuap-secondary.dfs.core.windows.net/","web":"https://zhiyihuangsaeuap-secondary.z2.web.core.windows.net/","blob":"https://zhiyihuangsaeuap-secondary.blob.core.windows.net/","queue":"https://zhiyihuangsaeuap-secondary.queue.core.windows.net/","table":"https://zhiyihuangsaeuap-secondary.table.core.windows.net/"}}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adt-bulk-import-test/providers/Microsoft.Storage/storageAccounts/adtbulkimportstorage","name":"adtbulkimportstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-07T00:27:07.8961308Z","key2":"2022-07-07T00:27:07.8961308Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-07T00:27:07.8961308Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-07T00:27:07.8961308Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-07T00:27:07.7399077Z","primaryEndpoints":{"dfs":"https://adtbulkimportstorage.dfs.core.windows.net/","web":"https://adtbulkimportstorage.z13.web.core.windows.net/","blob":"https://adtbulkimportstorage.blob.core.windows.net/","queue":"https://adtbulkimportstorage.queue.core.windows.net/","table":"https://adtbulkimportstorage.table.core.windows.net/","file":"https://adtbulkimportstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adt-df-extension/providers/Microsoft.Storage/storageAccounts/adtdfextension","name":"adtdfextension","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-29T18:21:04.2046567Z","key2":"2022-07-29T18:21:04.2046567Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"table":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"queue":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T18:21:04.0640330Z","primaryEndpoints":{"dfs":"https://adtdfextension.dfs.core.windows.net/","web":"https://adtdfextension.z13.web.core.windows.net/","blob":"https://adtdfextension.blob.core.windows.net/","queue":"https://adtdfextension.queue.core.windows.net/","table":"https://adtdfextension.table.core.windows.net/","file":"https://adtdfextension.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://adtdfextension-secondary.dfs.core.windows.net/","web":"https://adtdfextension-secondary.z13.web.core.windows.net/","blob":"https://adtdfextension-secondary.blob.core.windows.net/","queue":"https://adtdfextension-secondary.queue.core.windows.net/","table":"https://adtdfextension-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Storage/storageAccounts/avagrawtest23","name":"avagrawtest23","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-02T22:04:35.9764387Z","key2":"2022-06-02T22:04:35.9764387Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-02T22:04:35.9764387Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-02T22:04:35.9764387Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-02T22:04:35.8201977Z","primaryEndpoints":{"dfs":"https://avagrawtest23.dfs.core.windows.net/","web":"https://avagrawtest23.z13.web.core.windows.net/","blob":"https://avagrawtest23.blob.core.windows.net/","queue":"https://avagrawtest23.queue.core.windows.net/","table":"https://avagrawtest23.table.core.windows.net/","file":"https://avagrawtest23.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://avagrawtest23-secondary.dfs.core.windows.net/","web":"https://avagrawtest23-secondary.z13.web.core.windows.net/","blob":"https://avagrawtest23-secondary.blob.core.windows.net/","queue":"https://avagrawtest23-secondary.queue.core.windows.net/","table":"https://avagrawtest23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/baltimorepp","name":"baltimorepp","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-20T18:04:57.3856063Z","key2":"2022-06-20T18:04:57.3856063Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T18:04:57.4012371Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T18:04:57.4012371Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-20T18:04:57.2449704Z","primaryEndpoints":{"dfs":"https://baltimorepp.dfs.core.windows.net/","web":"https://baltimorepp.z13.web.core.windows.net/","blob":"https://baltimorepp.blob.core.windows.net/","queue":"https://baltimorepp.queue.core.windows.net/","table":"https://baltimorepp.table.core.windows.net/","file":"https://baltimorepp.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://baltimorepp-secondary.dfs.core.windows.net/","web":"https://baltimorepp-secondary.z13.web.core.windows.net/","blob":"https://baltimorepp-secondary.blob.core.windows.net/","queue":"https://baltimorepp-secondary.queue.core.windows.net/","table":"https://baltimorepp-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/cs210032001c8853a3f","name":"cs210032001c8853a3f","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-09-06T19:47:02.5447463Z","key2":"2022-09-06T19:47:02.5447463Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T19:47:02.5447463Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T19:47:02.5447463Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-09-06T19:47:02.4041041Z","primaryEndpoints":{"dfs":"https://cs210032001c8853a3f.dfs.core.windows.net/","web":"https://cs210032001c8853a3f.z13.web.core.windows.net/","blob":"https://cs210032001c8853a3f.blob.core.windows.net/","queue":"https://cs210032001c8853a3f.queue.core.windows.net/","table":"https://cs210032001c8853a3f.table.core.windows.net/","file":"https://cs210032001c8853a3f.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/datahistorypp","name":"datahistorypp","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-19T17:10:36.1817423Z","key2":"2021-07-19T17:10:36.1817423Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-19T17:10:36.1817423Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-19T17:10:36.1817423Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-19T17:10:36.0879993Z","primaryEndpoints":{"dfs":"https://datahistorypp.dfs.core.windows.net/","web":"https://datahistorypp.z13.web.core.windows.net/","blob":"https://datahistorypp.blob.core.windows.net/","queue":"https://datahistorypp.queue.core.windows.net/","table":"https://datahistorypp.table.core.windows.net/","file":"https://datahistorypp.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://datahistorypp-secondary.dfs.core.windows.net/","web":"https://datahistorypp-secondary.z13.web.core.windows.net/","blob":"https://datahistorypp-secondary.blob.core.windows.net/","queue":"https://datahistorypp-secondary.queue.core.windows.net/","table":"https://datahistorypp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/hubstore11c8","name":"hubstore11c8","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"iot_resource":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5"},"properties":{"keyCreationTime":{"key1":"2022-10-18T17:37:23.2635736Z","key2":"2022-10-18T17:37:23.2635736Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T17:37:23.2635736Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T17:37:23.2635736Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-18T17:37:23.1072957Z","primaryEndpoints":{"dfs":"https://hubstore11c8.dfs.core.windows.net/","web":"https://hubstore11c8.z13.web.core.windows.net/","blob":"https://hubstore11c8.blob.core.windows.net/","queue":"https://hubstore11c8.queue.core.windows.net/","table":"https://hubstore11c8.table.core.windows.net/","file":"https://hubstore11c8.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://hubstore11c8-secondary.dfs.core.windows.net/","web":"https://hubstore11c8-secondary.z13.web.core.windows.net/","blob":"https://hubstore11c8-secondary.blob.core.windows.net/","queue":"https://hubstore11c8-secondary.queue.core.windows.net/","table":"https://hubstore11c8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Storage/storageAccounts/identitiestest","name":"identitiestest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-10-06T18:12:55.8361914Z","key2":"2022-10-06T18:12:55.8361914Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-06T18:12:55.8518461Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-06T18:12:55.8518461Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-06T18:12:55.6799956Z","primaryEndpoints":{"dfs":"https://identitiestest.dfs.core.windows.net/","web":"https://identitiestest.z13.web.core.windows.net/","blob":"https://identitiestest.blob.core.windows.net/","queue":"https://identitiestest.queue.core.windows.net/","table":"https://identitiestest.table.core.windows.net/","file":"https://identitiestest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://identitiestest-secondary.dfs.core.windows.net/","web":"https://identitiestest-secondary.z13.web.core.windows.net/","blob":"https://identitiestest-secondary.blob.core.windows.net/","queue":"https://identitiestest-secondary.queue.core.windows.net/","table":"https://identitiestest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iot-hub-extension-dogfood/providers/Microsoft.Storage/storageAccounts/iothubdfextension","name":"iothubdfextension","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-08T20:04:13.2606504Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-08T20:04:13.2606504Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-12-08T20:04:13.1512596Z","primaryEndpoints":{"dfs":"https://iothubdfextension.dfs.core.windows.net/","web":"https://iothubdfextension.z13.web.core.windows.net/","blob":"https://iothubdfextension.blob.core.windows.net/","queue":"https://iothubdfextension.queue.core.windows.net/","table":"https://iothubdfextension.table.core.windows.net/","file":"https://iothubdfextension.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://iothubdfextension-secondary.dfs.core.windows.net/","web":"https://iothubdfextension-secondary.z13.web.core.windows.net/","blob":"https://iothubdfextension-secondary.blob.core.windows.net/","queue":"https://iothubdfextension-secondary.queue.core.windows.net/","table":"https://iothubdfextension-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Storage/storageAccounts/jiacjutest","name":"jiacjutest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-16T00:00:42.1218840Z","key2":"2021-11-16T00:00:42.1218840Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-16T00:00:42.1218840Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-16T00:00:42.1218840Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-16T00:00:41.8874796Z","primaryEndpoints":{"blob":"https://jiacjutest.blob.core.windows.net/","queue":"https://jiacjutest.queue.core.windows.net/","table":"https://jiacjutest.table.core.windows.net/","file":"https://jiacjutest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avins-models-repo-test/providers/Microsoft.Storage/storageAccounts/modelsrepotest230291","name":"modelsrepotest230291","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-11T22:28:39.5386501Z","key2":"2022-05-11T22:28:39.5386501Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T22:28:39.5386501Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T22:28:39.5386501Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-11T22:28:39.3511797Z","primaryEndpoints":{"dfs":"https://modelsrepotest230291.dfs.core.windows.net/","web":"https://modelsrepotest230291.z13.web.core.windows.net/","blob":"https://modelsrepotest230291.blob.core.windows.net/","queue":"https://modelsrepotest230291.queue.core.windows.net/","table":"https://modelsrepotest230291.table.core.windows.net/","file":"https://modelsrepotest230291.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://modelsrepotest230291-secondary.dfs.core.windows.net/","web":"https://modelsrepotest230291-secondary.z13.web.core.windows.net/","blob":"https://modelsrepotest230291-secondary.blob.core.windows.net/","queue":"https://modelsrepotest230291-secondary.queue.core.windows.net/","table":"https://modelsrepotest230291-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/edge_billable_modules/providers/Microsoft.Storage/storageAccounts/privatepreviewbilledge","name":"privatepreviewbilledge","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-01-14T03:26:59.5305000Z","key2":"2022-01-14T03:26:59.5305000Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-14T03:26:59.5305000Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-14T03:26:59.5305000Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-14T03:26:59.3898773Z","primaryEndpoints":{"dfs":"https://privatepreviewbilledge.dfs.core.windows.net/","web":"https://privatepreviewbilledge.z13.web.core.windows.net/","blob":"https://privatepreviewbilledge.blob.core.windows.net/","queue":"https://privatepreviewbilledge.queue.core.windows.net/","table":"https://privatepreviewbilledge.table.core.windows.net/","file":"https://privatepreviewbilledge.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://privatepreviewbilledge-secondary.dfs.core.windows.net/","web":"https://privatepreviewbilledge-secondary.z13.web.core.windows.net/","blob":"https://privatepreviewbilledge-secondary.blob.core.windows.net/","queue":"https://privatepreviewbilledge-secondary.queue.core.windows.net/","table":"https://privatepreviewbilledge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Storage/storageAccounts/raharrideviceupdates","name":"raharrideviceupdates","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-10T21:56:24.8723906Z","key2":"2021-09-10T21:56:24.8723906Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T21:56:24.8723906Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T21:56:24.8723906Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-09-10T21:56:24.7786183Z","primaryEndpoints":{"blob":"https://raharrideviceupdates.blob.core.windows.net/","queue":"https://raharrideviceupdates.queue.core.windows.net/","table":"https://raharrideviceupdates.table.core.windows.net/","file":"https://raharrideviceupdates.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Storage/storageAccounts/ridotempdata","name":"ridotempdata","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-19T21:49:24.0720856Z","key2":"2021-04-19T21:49:24.0720856Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-19T21:49:24.0720856Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-19T21:49:24.0720856Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-19T21:49:23.9627356Z","primaryEndpoints":{"dfs":"https://ridotempdata.dfs.core.windows.net/","web":"https://ridotempdata.z13.web.core.windows.net/","blob":"https://ridotempdata.blob.core.windows.net/","queue":"https://ridotempdata.queue.core.windows.net/","table":"https://ridotempdata.table.core.windows.net/","file":"https://ridotempdata.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ridotempdata-secondary.dfs.core.windows.net/","web":"https://ridotempdata-secondary.z13.web.core.windows.net/","blob":"https://ridotempdata-secondary.blob.core.windows.net/","queue":"https://ridotempdata-secondary.queue.core.windows.net/","table":"https://ridotempdata-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslerstorage","name":"rkesslerstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-31T04:38:45.5328731Z","key2":"2021-08-31T04:38:45.5328731Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T04:38:45.5328731Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T04:38:45.5328731Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T04:38:45.4234853Z","primaryEndpoints":{"dfs":"https://rkesslerstorage.dfs.core.windows.net/","web":"https://rkesslerstorage.z13.web.core.windows.net/","blob":"https://rkesslerstorage.blob.core.windows.net/","queue":"https://rkesslerstorage.queue.core.windows.net/","table":"https://rkesslerstorage.table.core.windows.net/","file":"https://rkesslerstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://rkesslerstorage-secondary.dfs.core.windows.net/","web":"https://rkesslerstorage-secondary.z13.web.core.windows.net/","blob":"https://rkesslerstorage-secondary.blob.core.windows.net/","queue":"https://rkesslerstorage-secondary.queue.core.windows.net/","table":"https://rkesslerstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/vilitstore","name":"vilitstore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-23T20:09:36.4369560Z","key2":"2021-08-23T20:09:36.4369560Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T20:09:36.4369560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T20:09:36.4369560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T20:09:36.3275868Z","primaryEndpoints":{"dfs":"https://vilitstore.dfs.core.windows.net/","web":"https://vilitstore.z13.web.core.windows.net/","blob":"https://vilitstore.blob.core.windows.net/","queue":"https://vilitstore.queue.core.windows.net/","table":"https://vilitstore.table.core.windows.net/","file":"https://vilitstore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"Logging, + Metrics, 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.rglpb44c77ofpbl2aznugwkyurgp4bganvrh364eeuwcyvajlpagbqsbjb7rd7fukrf/providers/Microsoft.Storage/storageAccounts/clitest2tvnubwb6ky2be36j","name":"clitest2tvnubwb6ky2be36j","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:03:19.3282229Z","key2":"2022-10-14T20:03:19.3282229Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:03:19.3438435Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:03:19.3438435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:03:19.2344681Z","primaryEndpoints":{"blob":"https://clitest2tvnubwb6ky2be36j.blob.core.windows.net/","queue":"https://clitest2tvnubwb6ky2be36j.queue.core.windows.net/","table":"https://clitest2tvnubwb6ky2be36j.table.core.windows.net/","file":"https://clitest2tvnubwb6ky2be36j.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.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Storage/storageAccounts/clitest5qkwfloklp7b2g7ng","name":"clitest5qkwfloklp7b2g7ng","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:04:21.9696331Z","key2":"2022-10-14T20:04:21.9696331Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:04:21.9852777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:04:21.9852777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:04:21.8758874Z","primaryEndpoints":{"blob":"https://clitest5qkwfloklp7b2g7ng.blob.core.windows.net/","queue":"https://clitest5qkwfloklp7b2g7ng.queue.core.windows.net/","table":"https://clitest5qkwfloklp7b2g7ng.table.core.windows.net/","file":"https://clitest5qkwfloklp7b2g7ng.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.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Storage/storageAccounts/clitesteklqzuyizgeeenn75","name":"clitesteklqzuyizgeeenn75","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:48:08.1733907Z","key2":"2022-10-18T18:48:08.1733907Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.1733907Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.1733907Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:48:08.0640087Z","primaryEndpoints":{"blob":"https://clitesteklqzuyizgeeenn75.blob.core.windows.net/","queue":"https://clitesteklqzuyizgeeenn75.queue.core.windows.net/","table":"https://clitesteklqzuyizgeeenn75.table.core.windows.net/","file":"https://clitesteklqzuyizgeeenn75.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.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Storage/storageAccounts/clitestigva6doxivhvo5mqm","name":"clitestigva6doxivhvo5mqm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:30:07.9546953Z","key2":"2022-10-18T18:30:07.9546953Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:07.9546953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:07.9546953Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:30:07.8453184Z","primaryEndpoints":{"blob":"https://clitestigva6doxivhvo5mqm.blob.core.windows.net/","queue":"https://clitestigva6doxivhvo5mqm.queue.core.windows.net/","table":"https://clitestigva6doxivhvo5mqm.table.core.windows.net/","file":"https://clitestigva6doxivhvo5mqm.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.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Storage/storageAccounts/clitestmmxqd6sx3bmeg75oa","name":"clitestmmxqd6sx3bmeg75oa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:31:14.4418256Z","key2":"2022-10-14T20:31:14.4418256Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.4574466Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.4574466Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:31:14.3324427Z","primaryEndpoints":{"blob":"https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/","queue":"https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/","table":"https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/","file":"https://clitestmmxqd6sx3bmeg75oa.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":{"keyCreationTime":{"key1":"2022-10-18T20:58:48.5500485Z","key2":"2022-10-18T20:58:48.5500485Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T20:58:48.5500485Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T20:58:48.5500485Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T20:58:48.4250778Z","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.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Storage/storageAccounts/clitestwbufuo762kwfy7o53","name":"clitestwbufuo762kwfy7o53","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:48:08.7846725Z","key2":"2022-10-18T18:48:08.7846725Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.7983950Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.7983950Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:48:08.6577638Z","primaryEndpoints":{"blob":"https://clitestwbufuo762kwfy7o53.blob.core.windows.net/","queue":"https://clitestwbufuo762kwfy7o53.queue.core.windows.net/","table":"https://clitestwbufuo762kwfy7o53.table.core.windows.net/","file":"https://clitestwbufuo762kwfy7o53.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.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Storage/storageAccounts/clitestx5vvad2p4lj422dtt","name":"clitestx5vvad2p4lj422dtt","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:31:14.2074274Z","key2":"2022-10-14T20:31:14.2074274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.2230642Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.2230642Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:31:14.0981110Z","primaryEndpoints":{"blob":"https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/","queue":"https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/","table":"https://clitestx5vvad2p4lj422dtt.table.core.windows.net/","file":"https://clitestx5vvad2p4lj422dtt.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.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Storage/storageAccounts/clitestxr6xomz7iii3qglyv","name":"clitestxr6xomz7iii3qglyv","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:58:57.6340465Z","key2":"2022-10-14T20:58:57.6340465Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:58:57.6340465Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:58:57.6340465Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:58:57.5246374Z","primaryEndpoints":{"blob":"https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/","queue":"https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/","table":"https://clitestxr6xomz7iii3qglyv.table.core.windows.net/","file":"https://clitestxr6xomz7iii3qglyv.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.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Storage/storageAccounts/clitestzzaeirfu6bbwfj4ja","name":"clitestzzaeirfu6bbwfj4ja","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:30:08.1422082Z","key2":"2022-10-18T18:30:08.1422082Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:08.1578272Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:08.1578272Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:30:08.0484744Z","primaryEndpoints":{"blob":"https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/","queue":"https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/","table":"https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/","file":"https://clitestzzaeirfu6bbwfj4ja.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/cs4100300009acbc8c3","name":"cs4100300009acbc8c3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-09T18:44:35.6761185Z","key2":"2022-02-09T18:44:35.6761185Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-09T18:44:35.6761185Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-09T18:44:35.6761185Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-09T18:44:35.5823418Z","primaryEndpoints":{"dfs":"https://cs4100300009acbc8c3.dfs.core.windows.net/","web":"https://cs4100300009acbc8c3.z22.web.core.windows.net/","blob":"https://cs4100300009acbc8c3.blob.core.windows.net/","queue":"https://cs4100300009acbc8c3.queue.core.windows.net/","table":"https://cs4100300009acbc8c3.table.core.windows.net/","file":"https://cs4100300009acbc8c3.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/cs41003200066a7dd52","name":"cs41003200066a7dd52","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-18T17:36:45.6533903Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-18T17:36:45.6533903Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-18T17:36:45.5752594Z","primaryEndpoints":{"dfs":"https://cs41003200066a7dd52.dfs.core.windows.net/","web":"https://cs41003200066a7dd52.z22.web.core.windows.net/","blob":"https://cs41003200066a7dd52.blob.core.windows.net/","queue":"https://cs41003200066a7dd52.queue.core.windows.net/","table":"https://cs41003200066a7dd52.table.core.windows.net/","file":"https://cs41003200066a7dd52.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/cs41003200200848f41","name":"cs41003200200848f41","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-06-08T18:15:57.8153697Z","key2":"2022-06-08T18:15:57.8153697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-08T18:15:57.8153697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-08T18:15:57.8153697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-08T18:15:57.7216712Z","primaryEndpoints":{"dfs":"https://cs41003200200848f41.dfs.core.windows.net/","web":"https://cs41003200200848f41.z22.web.core.windows.net/","blob":"https://cs41003200200848f41.blob.core.windows.net/","queue":"https://cs41003200200848f41.queue.core.windows.net/","table":"https://cs41003200200848f41.table.core.windows.net/","file":"https://cs41003200200848f41.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/cs410033fff96467dc6","name":"cs410033fff96467dc6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-12-13T17:13:30.0923471Z","key2":"2021-12-13T17:13:30.0923471Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-13T17:13:30.0923471Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-13T17:13:30.0923471Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-13T17:13:29.9986006Z","primaryEndpoints":{"dfs":"https://cs410033fff96467dc6.dfs.core.windows.net/","web":"https://cs410033fff96467dc6.z22.web.core.windows.net/","blob":"https://cs410033fff96467dc6.blob.core.windows.net/","queue":"https://cs410033fff96467dc6.queue.core.windows.net/","table":"https://cs410033fff96467dc6.table.core.windows.net/","file":"https://cs410033fff96467dc6.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/cs410037ffe801b4af4","name":"cs410037ffe801b4af4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T12:02:15.3272698Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T12:02:15.3272698Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-20T12:02:15.2647454Z","primaryEndpoints":{"dfs":"https://cs410037ffe801b4af4.dfs.core.windows.net/","web":"https://cs410037ffe801b4af4.z22.web.core.windows.net/","blob":"https://cs410037ffe801b4af4.blob.core.windows.net/","queue":"https://cs410037ffe801b4af4.queue.core.windows.net/","table":"https://cs410037ffe801b4af4.table.core.windows.net/","file":"https://cs410037ffe801b4af4.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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iotqrcodes/providers/Microsoft.Storage/storageAccounts/iotqrcodes","name":"iotqrcodes","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-29T18:48:51.7888406Z","key2":"2021-07-29T18:48:51.7888406Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T18:48:51.7888406Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T18:48:51.7888406Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-29T18:48:51.7263422Z","primaryEndpoints":{"dfs":"https://iotqrcodes.dfs.core.windows.net/","web":"https://iotqrcodes.z22.web.core.windows.net/","blob":"https://iotqrcodes.blob.core.windows.net/","queue":"https://iotqrcodes.queue.core.windows.net/","table":"https://iotqrcodes.table.core.windows.net/","file":"https://iotqrcodes.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-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320004055e7df","name":"cs7100320004055e7df","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-08-25T17:36:35.3733486Z","key2":"2022-08-25T17:36:35.3733486Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T17:36:35.7639780Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T17:36:35.7639780Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-25T17:36:35.2795833Z","primaryEndpoints":{"dfs":"https://cs7100320004055e7df.dfs.core.windows.net/","web":"https://cs7100320004055e7df.z21.web.core.windows.net/","blob":"https://cs7100320004055e7df.blob.core.windows.net/","queue":"https://cs7100320004055e7df.queue.core.windows.net/","table":"https://cs7100320004055e7df.table.core.windows.net/","file":"https://cs7100320004055e7df.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/iliesrgbf29","name":"iliesrgbf29","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-21T18:06:13.8315498Z","key2":"2022-06-21T18:06:13.8315498Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-21T18:06:13.8315498Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-21T18:06:13.8315498Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-21T18:06:13.7379857Z","primaryEndpoints":{"blob":"https://iliesrgbf29.blob.core.windows.net/","queue":"https://iliesrgbf29.queue.core.windows.net/","table":"https://iliesrgbf29.table.core.windows.net/","file":"https://iliesrgbf29.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/vilit8722","name":"vilit8722","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-11T18:59:07.4717431Z","key2":"2022-05-11T18:59:07.4717431Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T18:59:07.4717431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T18:59:07.4717431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-11T18:59:07.3623120Z","primaryEndpoints":{"blob":"https://vilit8722.blob.core.windows.net/","queue":"https://vilit8722.queue.core.windows.net/","table":"https://vilit8722.table.core.windows.net/","file":"https://vilit8722.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Storage/storageAccounts/vilitehtoazmon8c23","name":"vilitehtoazmon8c23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T17:19:46.9319689Z","key2":"2022-03-31T17:19:46.9319689Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T17:19:46.9319689Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T17:19:46.9319689Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-31T17:19:46.8225518Z","primaryEndpoints":{"blob":"https://vilitehtoazmon8c23.blob.core.windows.net/","queue":"https://vilitehtoazmon8c23.queue.core.windows.net/","table":"https://vilitehtoazmon8c23.table.core.windows.net/","file":"https://vilitehtoazmon8c23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dt_test/providers/Microsoft.Storage/storageAccounts/wqklkwjkjwejkwe","name":"wqklkwjkjwejkwe","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-03-16T15:47:52.5520552Z","key2":"2021-03-16T15:47:52.5520552Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-16T15:47:52.5520552Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-16T15:47:52.5520552Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-16T15:47:52.4739156Z","primaryEndpoints":{"dfs":"https://wqklkwjkjwejkwe.dfs.core.windows.net/","web":"https://wqklkwjkjwejkwe.z19.web.core.windows.net/","blob":"https://wqklkwjkjwejkwe.blob.core.windows.net/","queue":"https://wqklkwjkjwejkwe.queue.core.windows.net/","table":"https://wqklkwjkjwejkwe.table.core.windows.net/","file":"https://wqklkwjkjwejkwe.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Storage/storageAccounts/aducli","name":"aducli","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"dnsEndpointType":"Standard","allowedCopyScope":"AAD","defaultToOAuthAuthentication":true,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-21T18:11:40.7795178Z","key2":"2022-07-21T18:11:40.7795178Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T18:11:40.7951256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T18:11:40.7951256Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-21T18:11:40.6857415Z","primaryEndpoints":{"dfs":"https://aducli.dfs.core.windows.net/","web":"https://aducli.z5.web.core.windows.net/","blob":"https://aducli.blob.core.windows.net/","queue":"https://aducli.queue.core.windows.net/","table":"https://aducli.table.core.windows.net/","file":"https://aducli.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://aducli-secondary.dfs.core.windows.net/","web":"https://aducli-secondary.z5.web.core.windows.net/","blob":"https://aducli-secondary.blob.core.windows.net/","queue":"https://aducli-secondary.queue.core.windows.net/","table":"https://aducli-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Storage/storageAccounts/azcliintteststorage","name":"azcliintteststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-18T00:47:50.5253938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-18T00:47:50.5253938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-18T00:47:50.4473020Z","primaryEndpoints":{"dfs":"https://azcliintteststorage.dfs.core.windows.net/","web":"https://azcliintteststorage.z5.web.core.windows.net/","blob":"https://azcliintteststorage.blob.core.windows.net/","queue":"https://azcliintteststorage.queue.core.windows.net/","table":"https://azcliintteststorage.table.core.windows.net/","file":"https://azcliintteststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azcliintteststorage-secondary.dfs.core.windows.net/","web":"https://azcliintteststorage-secondary.z5.web.core.windows.net/","blob":"https://azcliintteststorage-secondary.blob.core.windows.net/","queue":"https://azcliintteststorage-secondary.queue.core.windows.net/","table":"https://azcliintteststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventualC/providers/Microsoft.Storage/storageAccounts/dmrstore","name":"dmrstore","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T01:26:42.2484427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T01:26:42.2484427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-20T01:26:42.1546871Z","primaryEndpoints":{"dfs":"https://dmrstore.dfs.core.windows.net/","web":"https://dmrstore.z5.web.core.windows.net/","blob":"https://dmrstore.blob.core.windows.net/","queue":"https://dmrstore.queue.core.windows.net/","table":"https://dmrstore.table.core.windows.net/","file":"https://dmrstore.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rkiotstorage2","name":"rkiotstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T23:15:17.7346844Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T23:15:17.7346844Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-23T23:15:17.6409336Z","primaryEndpoints":{"dfs":"https://rkiotstorage2.dfs.core.windows.net/","web":"https://rkiotstorage2.z5.web.core.windows.net/","blob":"https://rkiotstorage2.blob.core.windows.net/","queue":"https://rkiotstorage2.queue.core.windows.net/","table":"https://rkiotstorage2.table.core.windows.net/","file":"https://rkiotstorage2.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"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":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"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"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rktsistorage","name":"rktsistorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-05T17:19:34.7436222Z","key2":"2021-04-05T17:19:34.7436222Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-05T17:19:34.7592460Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-05T17:19:34.7592460Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-05T17:19:34.6498962Z","primaryEndpoints":{"dfs":"https://rktsistorage.dfs.core.windows.net/","web":"https://rktsistorage.z5.web.core.windows.net/","blob":"https://rktsistorage.blob.core.windows.net/","queue":"https://rktsistorage.queue.core.windows.net/","table":"https://rktsistorage.table.core.windows.net/","file":"https://rktsistorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/storageaccountrkiot8c13","name":"storageaccountrkiot8c13","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-16T22:15:10.5759611Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-16T22:15:10.5759611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-09-16T22:15:10.4821881Z","primaryEndpoints":{"blob":"https://storageaccountrkiot8c13.blob.core.windows.net/","queue":"https://storageaccountrkiot8c13.queue.core.windows.net/","table":"https://storageaccountrkiot8c13.table.core.windows.net/","file":"https://storageaccountrkiot8c13.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/storageaccountrkiotb9e5","name":"storageaccountrkiotb9e5","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T19:30:15.3804746Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T19:30:15.3804746Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-02-23T19:30:15.3023373Z","primaryEndpoints":{"blob":"https://storageaccountrkiotb9e5.blob.core.windows.net/","queue":"https://storageaccountrkiotb9e5.queue.core.windows.net/","table":"https://storageaccountrkiotb9e5.table.core.windows.net/","file":"https://storageaccountrkiotb9e5.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/testrevocation","name":"testrevocation","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-10T19:00:22.0329798Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-10T19:00:22.0329798Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-10T19:00:21.9705172Z","primaryEndpoints":{"dfs":"https://testrevocation.dfs.core.windows.net/","web":"https://testrevocation.z5.web.core.windows.net/","blob":"https://testrevocation.blob.core.windows.net/","queue":"https://testrevocation.queue.core.windows.net/","table":"https://testrevocation.table.core.windows.net/","file":"https://testrevocation.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testrevocation-secondary.dfs.core.windows.net/","web":"https://testrevocation-secondary.z5.web.core.windows.net/","blob":"https://testrevocation-secondary.blob.core.windows.net/","queue":"https://testrevocation-secondary.queue.core.windows.net/","table":"https://testrevocation-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslereasteaup2storage","name":"rkesslereasteaup2storage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-28T16:38:28.5298643Z","key2":"2021-10-28T16:38:28.5298643Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T16:38:28.5298643Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T16:38:28.5298643Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T16:38:28.4517312Z","primaryEndpoints":{"dfs":"https://rkesslereasteaup2storage.dfs.core.windows.net/","web":"https://rkesslereasteaup2storage.z3.web.core.windows.net/","blob":"https://rkesslereasteaup2storage.blob.core.windows.net/","queue":"https://rkesslereasteaup2storage.queue.core.windows.net/","table":"https://rkesslereasteaup2storage.table.core.windows.net/","file":"https://rkesslereasteaup2storage.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://rkesslereasteaup2storage-secondary.dfs.core.windows.net/","web":"https://rkesslereasteaup2storage-secondary.z3.web.core.windows.net/","blob":"https://rkesslereasteaup2storage-secondary.blob.core.windows.net/","queue":"https://rkesslereasteaup2storage-secondary.queue.core.windows.net/","table":"https://rkesslereasteaup2storage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslerstoragev1","name":"rkesslerstoragev1","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-31T15:39:41.4036635Z","key2":"2021-08-31T15:39:41.4036635Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T15:39:41.4193120Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T15:39:41.4193120Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-31T15:39:41.3411838Z","primaryEndpoints":{"blob":"https://rkesslerstoragev1.blob.core.windows.net/","queue":"https://rkesslerstoragev1.queue.core.windows.net/","table":"https://rkesslerstoragev1.table.core.windows.net/","file":"https://rkesslerstoragev1.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://rkesslerstoragev1-secondary.blob.core.windows.net/","queue":"https://rkesslerstoragev1-secondary.queue.core.windows.net/","table":"https://rkesslerstoragev1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Storage/storageAccounts/jeremyjonesstorage1","name":"jeremyjonesstorage1","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-05-31T20:02:55.4385674Z","key2":"2022-05-31T20:02:55.4385674Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-31T20:02:55.4385674Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-31T20:02:55.4385674Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-31T20:02:55.3760966Z","primaryEndpoints":{"dfs":"https://jeremyjonesstorage1.dfs.core.windows.net/","web":"https://jeremyjonesstorage1.z2.web.core.windows.net/","blob":"https://jeremyjonesstorage1.blob.core.windows.net/","queue":"https://jeremyjonesstorage1.queue.core.windows.net/","table":"https://jeremyjonesstorage1.table.core.windows.net/","file":"https://jeremyjonesstorage1.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '427354' + - '79996' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:20:59 GMT + - Tue, 18 Oct 2022 20:59:09 GMT expires: - '-1' pragma: @@ -39,15 +40,14 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - 8b8fd0eb-4c87-4730-b134-063bd7559774 - - 111efe0f-89af-417c-92ac-9c95f0eb0862 - - f3024928-7abd-4987-87cd-b553ee5e815d - - 63d09210-618e-4644-9b61-567b9725bb84 - - 2e1b61ff-393d-46c6-88c7-afd2fb793c65 - - 6315f9c4-9fdd-4eb5-9cda-f5e7b6c88aeb - - e8024b65-f29e-443c-b10e-ca5f022433f2 - - 744ee4e7-57bb-43e2-b289-512f799b2152 - - 8b8bdbfd-bb68-46b3-9036-ad2557a6650a + - f10a3687-2c7d-4129-b897-42bbd8fb19d2 + - 088889a2-ce45-4285-b055-b6429263e379 + - bed6649e-c3ae-4453-adcf-6ba4eee3db1a + - a79c4734-57c1-4f0f-b05b-94df89a3046c + - c151f573-a0ab-4d15-bbc6-89608173fe08 + - 166e027f-7f1a-4cfd-ae5e-272bc6451f98 + - ad626468-4a32-469c-92ad-4dc732ba251b + - 91d84627-da8a-4a7d-bf34-3a2abaa62e9d status: code: 200 message: OK @@ -67,12 +67,12 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2022-05-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-05-11T06:20:36.0907189Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-11T06:20:36.0907189Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-10-18T20:58:48.5500485Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-10-18T20:58:48.5500485Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Wed, 11 May 2022 06:21:00 GMT + - Tue, 18 Oct 2022 20:59:09 GMT expires: - '-1' pragma: @@ -97,7 +97,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' status: code: 200 message: OK @@ -117,11 +117,11 @@ interactions: ParameterSetName: - --name --account-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-storage-blob/12.10.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-storage-blob/12.12.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) x-ms-date: - - Wed, 11 May 2022 06:20:59 GMT + - Tue, 18 Oct 2022 20:59:09 GMT x-ms-version: - - '2021-04-10' + - '2021-06-08' method: PUT uri: https://clitest000002.blob.core.windows.net/iothubcontainer1000004?restype=container response: @@ -131,15 +131,15 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:21:01 GMT + - Tue, 18 Oct 2022 20:59:09 GMT etag: - - '"0x8DA33166BF5BDB2"' + - '"0x8DAB14B9A99F97E"' last-modified: - - Wed, 11 May 2022 06:21:01 GMT + - Tue, 18 Oct 2022 20:59:10 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: - - '2021-04-10' + - '2021-06-08' status: code: 201 message: Created @@ -159,12 +159,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2022-05-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-05-11T06:20:36.0907189Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-11T06:20:36.0907189Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-10-18T20:58:48.5500485Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-10-18T20:58:48.5500485Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -173,7 +173,7 @@ interactions: content-type: - application/json date: - - Wed, 11 May 2022 06:21:02 GMT + - Tue, 18 Oct 2022 20:59:10 GMT expires: - '-1' pragma: @@ -207,12 +207,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-storage/20.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2022-05-01 response: body: - string: '{"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":{"keyCreationTime":{"key1":"2022-05-11T06:20:36.0907189Z","key2":"2022-05-11T06:20:36.0907189Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T06:20:36.0907189Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T06:20:36.0907189Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-11T06:20:35.9813489Z","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"}}' + string: '{"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":{"keyCreationTime":{"key1":"2022-10-18T20:58:48.5500485Z","key2":"2022-10-18T20:58:48.5500485Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T20:58:48.5500485Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T20:58:48.5500485Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T20:58:48.4250778Z","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"}}' headers: cache-control: - no-cache @@ -221,7 +221,7 @@ interactions: content-type: - application/json date: - - Wed, 11 May 2022 06:21:02 GMT + - Tue, 18 Oct 2022 20:59:10 GMT expires: - '-1' pragma: @@ -253,12 +253,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-05-11T06:20:19Z"},"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":"2022-10-18T20:58:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -267,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:21:03 GMT + - Tue, 18 Oct 2022 20:59:10 GMT expires: - '-1' pragma: @@ -282,7 +282,8 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "sku": {"name": "Standard", "tier": "Standard"}}' + body: '{"location": "westus2", "sku": {"name": "Standard", "tier": "Standard"}, + "properties": {"publicNetworkAccess": "Enabled"}}' headers: Accept: - application/json @@ -293,37 +294,37 @@ interactions: Connection: - keep-alive Content-Length: - - '72' + - '122' Content-Type: - application/json ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005?api-version=2022-01-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest1a62nzjy","createdAt":"2022-05-11T06:21:09.61Z","updatedAt":"2022-05-11T06:21:09.61Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest14bwo7qr","createdAt":"2022-10-18T20:59:13.573Z","updatedAt":"2022-10-18T20:59:13.573Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '776' + - '834' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:21:10 GMT + - Tue, 18 Oct 2022 20:59:14 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: @@ -351,31 +352,81 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005?api-version=2022-01-01-preview + response: + body: + string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest14bwo7qr","createdAt":"2022-10-18T20:59:13.573Z","updatedAt":"2022-10-18T20:59:13.573Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' + headers: + cache-control: + - no-cache + content-length: + - '834' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 20:59:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Service-Bus-Resource-Provider/CH3 + - Microsoft-HTTPAPI/2.0 + server-sb: + - Service-Bus-Resource-Provider/CH3 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - eventhubs namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005?api-version=2022-01-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest1a62nzjy","createdAt":"2022-05-11T06:21:09.61Z","updatedAt":"2022-05-11T06:21:09.61Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest14bwo7qr","createdAt":"2022-10-18T20:59:13.573Z","updatedAt":"2022-10-18T20:59:13.573Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '776' + - '834' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:21:41 GMT + - Tue, 18 Oct 2022 20:59:44 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: @@ -401,31 +452,31 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005?api-version=2022-01-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest1a62nzjy","createdAt":"2022-05-11T06:21:09.61Z","updatedAt":"2022-05-11T06:21:58.153Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest14bwo7qr","createdAt":"2022-10-18T20:59:13.573Z","updatedAt":"2022-10-18T21:00:05.897Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '773' + - '832' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:11 GMT + - Tue, 18 Oct 2022 21:00:13 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: @@ -451,31 +502,31 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005?api-version=2022-01-01-preview response: body: string: '{"sku":{"name":"Standard","tier":"Standard","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:ehnamespaceiothubfortest1a62nzjy","createdAt":"2022-05-11T06:21:09.61Z","updatedAt":"2022-05-11T06:21:58.153Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest14bwo7qr","createdAt":"2022-10-18T20:59:13.573Z","updatedAt":"2022-10-18T21:00:05.897Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '773' + - '832' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:11 GMT + - Tue, 18 Oct 2022 21:00:15 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: @@ -505,31 +556,27 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006","name":"eventHubiothubfortest000006","type":"Microsoft.EventHub/Namespaces/EventHubs","location":"West - US 2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2022-05-11T06:22:14.717Z","updatedAt":"2022-05-11T06:22:14.97Z","partitionIds":["0","1","2","3"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006","name":"eventHubiothubfortest000006","type":"Microsoft.EventHub/namespaces/eventhubs","location":"westus2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2022-10-18T21:00:17.14Z","updatedAt":"2022-10-18T21:00:17.303Z","partitionIds":["0","1","2","3"]}}' headers: cache-control: - no-cache content-length: - - '499' + - '498' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:15 GMT + - Tue, 18 Oct 2022 21:00:17 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -561,31 +608,27 @@ interactions: ParameterSetName: - --resource-group --namespace-name --eventhub-name --name --rights User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006/authorizationRules/eventHubPolicyiothubfortest?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006/authorizationRules/eventHubPolicyiothubfortest","name":"eventHubPolicyiothubfortest","type":"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules","location":"West - US 2","properties":{"rights":["Send"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006/authorizationRules/eventHubPolicyiothubfortest","name":"eventHubPolicyiothubfortest","type":"Microsoft.EventHub/namespaces/eventhubs/authorizationrules","properties":{"rights":["Send"]}}' headers: cache-control: - no-cache content-length: - - '410' + - '387' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:16 GMT + - Tue, 18 Oct 2022 21:00:18 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -615,30 +658,27 @@ interactions: ParameterSetName: - --resource-group --namespace-name --eventhub-name --name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-eventhub/9.1.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-eventhub/10.1.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006/authorizationRules/eventHubPolicyiothubfortest/listKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","secondaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","primaryKey":"mock_key","secondaryKey":"mock_key","keyName":"eventHubPolicyiothubfortest"}' + string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;eventHubiothubfortest000006","primaryKey":"mock_key","secondaryKey":"mock_key","keyName":"eventHubPolicyiothubfortest"}' headers: cache-control: - no-cache content-length: - - '587' + - '291' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:17 GMT + - Tue, 18 Oct 2022 21:00:19 GMT expires: - '-1' pragma: - no-cache server: - - Service-Bus-Resource-Provider/CH3 - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -666,12 +706,12 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-05-11T06:20:19Z"},"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":"2022-10-18T20:58:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -680,7 +720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:18 GMT + - Tue, 18 Oct 2022 21:00:19 GMT expires: - '-1' pragma: @@ -719,15 +759,15 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: 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: 7fed1b34-5700-4a33-ae42-6f589da2f3c3, - timestamp: 2022-05-11 06:22:25Z, errorcode: IH400016."}' + please include this correlation identifier: dc6bb254-b8a8-4eb4-b0b6-ede4e6fba386, + timestamp: 2022-10-18 21:00:20Z, errorcode: IH400016."}' headers: cache-control: - no-cache @@ -736,7 +776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:27 GMT + - Tue, 18 Oct 2022 21:00:20 GMT expires: - '-1' pragma: @@ -766,12 +806,12 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-05-11T06:20:19Z"},"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":"2022-10-18T20:58:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -780,7 +820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:28 GMT + - Tue, 18 Oct 2022 21:00:20 GMT expires: - '-1' pragma: @@ -819,15 +859,15 @@ interactions: ParameterSetName: - -n -g --sku --partition-count User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: 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: 64dbed2b-7ac0-41f8-9d99-934974759bdf, - timestamp: 2022-05-11 06:22:34Z, errorcode: IH400016."}' + please include this correlation identifier: 9a10b904-1636-4a66-9d7a-81b880a01d63, + timestamp: 2022-10-18 21:00:22Z, errorcode: IH400016."}' headers: cache-control: - no-cache @@ -836,7 +876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:37 GMT + - Tue, 18 Oct 2022 21:00:21 GMT expires: - '-1' pragma: @@ -866,12 +906,12 @@ interactions: ParameterSetName: - -n -g --sku --mintls User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-05-11T06:20:19Z"},"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":"2022-10-18T20:58:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -880,7 +920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:38 GMT + - Tue, 18 Oct 2022 21:00:22 GMT expires: - '-1' pragma: @@ -919,15 +959,15 @@ interactions: ParameterSetName: - -n -g --sku --mintls User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: string: '{"code":400089,"httpStatusCode":"BadRequest","message":"2.5 is not a valid MinTlsVersion value. If you contact a support representative please - include this correlation identifier: d9c022d1-1cb0-47cb-9a3d-16c4a6fd8db0, - timestamp: 2022-05-11 06:22:45Z, errorcode: IH400089."}' + include this correlation identifier: 869d78b0-35fb-4c01-a369-a355d9f8063f, + timestamp: 2022-10-18 21:00:23Z, errorcode: IH400089."}' headers: cache-control: - no-cache @@ -936,7 +976,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:48 GMT + - Tue, 18 Oct 2022 21:00:23 GMT expires: - '-1' pragma: @@ -968,12 +1008,12 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version --fnld User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-05-11T06:20:19Z"},"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":"2022-10-18T20:58:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -982,7 +1022,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:49 GMT + - Tue, 18 Oct 2022 21:00:23 GMT expires: - '-1' pragma: @@ -1023,15 +1063,15 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version --fnld User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","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":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"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-11000003","name":"iot-hub-for-test-11000003","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":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjUzZGIzOTgtYWI2NS00MGZmLTgxYjktODZmZWJmZTI1M2IyO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -1039,7 +1079,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:22:58 GMT + - Tue, 18 Oct 2022 21:00:27 GMT expires: - '-1' pragma: @@ -1071,12 +1111,12 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version --fnld User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjUzZGIzOTgtYWI2NS00MGZmLTgxYjktODZmZWJmZTI1M2IyO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"status":"Running"}' + string: '{"status":"Pending"}' headers: cache-control: - no-cache @@ -1085,7 +1125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:23:28 GMT + - Tue, 18 Oct 2022 21:00:27 GMT expires: - '-1' pragma: @@ -1119,9 +1159,9 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version --fnld User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjUzZGIzOTgtYWI2NS00MGZmLTgxYjktODZmZWJmZTI1M2IyO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -1133,7 +1173,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:23:59 GMT + - Tue, 18 Oct 2022 21:00:58 GMT expires: - '-1' pragma: @@ -1167,9 +1207,9 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version --fnld User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjUzZGIzOTgtYWI2NS00MGZmLTgxYjktODZmZWJmZTI1M2IyO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -1181,7 +1221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:24:29 GMT + - Tue, 18 Oct 2022 21:01:28 GMT expires: - '-1' pragma: @@ -1215,21 +1255,21 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version --fnld User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjUzZGIzOTgtYWI2NS00MGZmLTgxYjktODZmZWJmZTI1M2IyO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:24:59 GMT + - Tue, 18 Oct 2022 21:01:58 GMT expires: - '-1' pragma: @@ -1263,22 +1303,21 @@ interactions: --feedback-max-delivery-count --fileupload-notification-max-delivery-count --fileupload-notification-ttl --min-tls-version --fnld User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmR34=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '1705' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:00 GMT + - Tue, 18 Oct 2022 21:02:28 GMT expires: - '-1' pragma: @@ -1300,35 +1339,33 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - iot hub show-connection-string + - iot hub create Connection: - keep-alive ParameterSetName: - - -n + - -n -g --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 --min-tls-version --fnld User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmR34=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '3880' + - '22' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:03 GMT + - Tue, 18 Oct 2022 21:02:58 GMT expires: - '-1' pragma: @@ -1350,34 +1387,34 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - iot hub show-connection-string + - iot hub create Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - -n + - -n -g --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 --min-tls-version --fnld User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/iothubowner/listkeys?api-version=2021-07-02 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '131' + - '1728' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:03 GMT + - Tue, 18 Oct 2022 21:02:58 GMT expires: - '-1' pragma: @@ -1392,8 +1429,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1411,39 +1446,174 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmR34=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '3880' + - '178185' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:04 GMT + - Tue, 18 Oct 2022 21:03: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 + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -1461,11 +1631,11 @@ interactions: Content-Length: - '0' ParameterSetName: - - -n -g + - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/iothubowner/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/iothubowner/listkeys?api-version=2022-04-30-preview response: body: string: '{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -1478,7 +1648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:06 GMT + - Tue, 18 Oct 2022 21:03:06 GMT expires: - '-1' pragma: @@ -1510,41 +1680,176 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g + - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmR34=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '3880' + - '178185' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:07 GMT + - Tue, 18 Oct 2022 21:03:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -1562,24 +1867,24 @@ interactions: Content-Length: - '0' ParameterSetName: - - -n -g --all + - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/iothubowner/listkeys?api-version=2022-04-30-preview 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"}]}' + string: '{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"}' headers: cache-control: - no-cache content-length: - - '545' + - '131' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:09 GMT + - Tue, 18 Oct 2022 21:03:13 GMT expires: - '-1' pragma: @@ -1611,41 +1916,176 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --all + - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmR34=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '3880' + - '178185' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:09 GMT + - Tue, 18 Oct 2022 21:03: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 + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -1657,31 +2097,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub update + - iot hub show-connection-string Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc --tags + - -n -g --all User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmR34=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + 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: - - '3880' + - '545' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:12 GMT + - Tue, 18 Oct 2022 21:03:21 GMT expires: - '-1' pragma: @@ -1696,6 +2135,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1707,63 +2148,568 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub update + - iot hub show-connection-string Connection: - keep-alive ParameterSetName: - - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc --tags + - -n -g --all User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmR34=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '3880' + - '178185' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:14 GMT + - Tue, 18 Oct 2022 21:03:28 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmR34=", - "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": - "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": - 4}}, "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==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/", - "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": - {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": - 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": - 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": - "PT10S", "ttlAsIso8601": "P1DT19H", "maxDeliveryCount": 76}}, "features": "None"}, - "sku": {"name": "S1", "capacity": 1}, "identity": {"type": "None"}}' + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc --tags + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '178185' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:03:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc --tags + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '178185' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:03:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO9yTs=", + "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": + "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": + 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], + "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": []}, "routes": + [], "fallbackRoute": {"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==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/", + "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": + {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": + 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": + 46, "defaultTtlAsIso8601": "P1DT10H", "feedback": {"lockDurationAsIso8601": + "PT10S", "ttlAsIso8601": "P1DT19H", "maxDeliveryCount": 76}}, "features": "None"}, + "sku": {"name": "S1", "capacity": 1}, "identity": {"type": "None"}}' headers: Accept: - application/json @@ -1774,28 +2720,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1440' + - '1470' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmR34=''}' + - '{''IF-MATCH'': ''AAAADHO9yTs=''}' ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc --tags User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmR34=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"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==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"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==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODNhYzBmZjctY2FlYS00NzY1LTgyYmUtMDNjNGJiM2M5MzI0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODljOGRiMmUtZjRhZS00MWJkLTk2MjUtMzRlYWM0NWY3NmYyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -1803,7 +2749,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:19 GMT + - Tue, 18 Oct 2022 21:03:45 GMT expires: - '-1' pragma: @@ -1833,9 +2779,55 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc --tags User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODljOGRiMmUtZjRhZS00MWJkLTk2MjUtMzRlYWM0NWY3NmYyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:03:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc --tags + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODNhYzBmZjctY2FlYS00NzY1LTgyYmUtMDNjNGJiM2M5MzI0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODljOGRiMmUtZjRhZS00MWJkLTk2MjUtMzRlYWM0NWY3NmYyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1847,7 +2839,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:50 GMT + - Tue, 18 Oct 2022 21:04:15 GMT expires: - '-1' pragma: @@ -1879,22 +2871,22 @@ interactions: ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc --tags User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmSfA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO90aM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2085' + - '2108' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:50 GMT + - Tue, 18 Oct 2022 21:04:16 GMT expires: - '-1' pragma: @@ -1926,7 +2918,7 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -1938,7 +2930,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:25:51 GMT + - Tue, 18 Oct 2022 21:04:16 GMT expires: - '-1' pragma: @@ -1968,9 +2960,9 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -1983,7 +2975,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:54 GMT + - Tue, 18 Oct 2022 21:04:17 GMT expires: - '-1' pragma: @@ -2017,22 +3009,22 @@ interactions: ParameterSetName: - -n -g --fsa User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmSfA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO90aM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2085' + - '2108' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:56 GMT + - Tue, 18 Oct 2022 21:04:18 GMT expires: - '-1' pragma: @@ -2064,7 +3056,7 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -2076,7 +3068,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:25:57 GMT + - Tue, 18 Oct 2022 21:04:18 GMT expires: - '-1' pragma: @@ -2106,9 +3098,9 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -2121,7 +3113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:25:59 GMT + - Tue, 18 Oct 2022 21:04:18 GMT expires: - '-1' pragma: @@ -2155,22 +3147,22 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmSfA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO90aM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2085' + - '2108' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:26:01 GMT + - Tue, 18 Oct 2022 21:04:19 GMT expires: - '-1' pragma: @@ -2202,7 +3194,7 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -2214,7 +3206,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:26:02 GMT + - Tue, 18 Oct 2022 21:04:19 GMT expires: - '-1' pragma: @@ -2244,9 +3236,9 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -2259,7 +3251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:26:03 GMT + - Tue, 18 Oct 2022 21:04:20 GMT expires: - '-1' pragma: @@ -2293,22 +3285,22 @@ interactions: ParameterSetName: - -n -g --fsi User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmSfA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO90aM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2085' + - '2108' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:26:05 GMT + - Tue, 18 Oct 2022 21:04:21 GMT expires: - '-1' pragma: @@ -2340,7 +3332,7 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --disable-module-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -2352,7 +3344,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:26:06 GMT + - Tue, 18 Oct 2022 21:04:21 GMT expires: - '-1' pragma: @@ -2382,9 +3374,9 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --disable-module-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -2397,7 +3389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:26:09 GMT + - Tue, 18 Oct 2022 21:04:22 GMT expires: - '-1' pragma: @@ -2431,22 +3423,22 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --disable-module-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmSfA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO90aM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2085' + - '2108' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:26:10 GMT + - Tue, 18 Oct 2022 21:04:23 GMT expires: - '-1' pragma: @@ -2465,13 +3457,13 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmSfA=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO90aM=", "properties": {"disableLocalAuth": true, "disableModuleSAS": true, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": []}, "routes": - [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": @@ -2489,28 +3481,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1468' + - '1498' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmSfA=''}' + - '{''IF-MATCH'': ''AAAADHO90aM=''}' ParameterSetName: - -n -g --disable-local-auth --disable-module-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmSfA=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO90aM=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZWEwODVjZWYtNjJmOS00NzRjLTk3YjEtZjdjODA5ZTUwODVhO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjYyZjFkYTYtN2NmNC00NGQ0LWEyNzMtZTc5N2EzMDA5NGY0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -2518,7 +3510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:26:19 GMT + - Tue, 18 Oct 2022 21:04:26 GMT expires: - '-1' pragma: @@ -2548,9 +3540,55 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --disable-module-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjYyZjFkYTYtN2NmNC00NGQ0LWEyNzMtZTc5N2EzMDA5NGY0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:04:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n -g --disable-local-auth --disable-module-sas + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZWEwODVjZWYtNjJmOS00NzRjLTk3YjEtZjdjODA5ZTUwODVhO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjYyZjFkYTYtN2NmNC00NGQ0LWEyNzMtZTc5N2EzMDA5NGY0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -2562,7 +3600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:26:50 GMT + - Tue, 18 Oct 2022 21:04:56 GMT expires: - '-1' pragma: @@ -2594,9 +3632,9 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --disable-module-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZWEwODVjZWYtNjJmOS00NzRjLTk3YjEtZjdjODA5ZTUwODVhO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjYyZjFkYTYtN2NmNC00NGQ0LWEyNzMtZTc5N2EzMDA5NGY0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2608,7 +3646,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:27:20 GMT + - Tue, 18 Oct 2022 21:05:26 GMT expires: - '-1' pragma: @@ -2640,22 +3678,22 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --disable-module-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmTnk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO912c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2133' + - '2156' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:27:21 GMT + - Tue, 18 Oct 2022 21:05:26 GMT expires: - '-1' pragma: @@ -2687,7 +3725,7 @@ interactions: ParameterSetName: - -n -g --disable-module-sas --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -2699,7 +3737,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:27:23 GMT + - Tue, 18 Oct 2022 21:05:27 GMT expires: - '-1' pragma: @@ -2729,9 +3767,9 @@ interactions: ParameterSetName: - -n -g --disable-module-sas --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -2744,7 +3782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:27:25 GMT + - Tue, 18 Oct 2022 21:05:27 GMT expires: - '-1' pragma: @@ -2778,22 +3816,22 @@ interactions: ParameterSetName: - -n -g --disable-module-sas --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmTnk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO912c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2133' + - '2156' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:27:26 GMT + - Tue, 18 Oct 2022 21:05:28 GMT expires: - '-1' pragma: @@ -2812,14 +3850,15 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmTnk=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO912c=", "properties": {"disableLocalAuth": true, "disableDeviceSAS": true, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [], "cosmosDBSqlCollections": []}, "routes": [], "fallbackRoute": {"name": "$fallback", + "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], + "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", + "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -2836,28 +3875,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1495' + - '1525' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmTnk=''}' + - '{''IF-MATCH'': ''AAAADHO912c=''}' ParameterSetName: - -n -g --disable-module-sas --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmTnk=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO912c=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTJlNDFlZTItZDNjMS00MDFhLTljZTMtZDc5MDY4NzhlY2Y5O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODY5YTQ3ZmYtMTMyNy00NTIxLThlYjctNTRhYTEwMmUzNWRlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -2865,7 +3904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:27:34 GMT + - Tue, 18 Oct 2022 21:05:31 GMT expires: - '-1' pragma: @@ -2895,21 +3934,21 @@ interactions: ParameterSetName: - -n -g --disable-module-sas --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTJlNDFlZTItZDNjMS00MDFhLTljZTMtZDc5MDY4NzhlY2Y5O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODY5YTQ3ZmYtMTMyNy00NTIxLThlYjctNTRhYTEwMmUzNWRlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Pending"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:28:06 GMT + - Tue, 18 Oct 2022 21:05:31 GMT expires: - '-1' pragma: @@ -2941,22 +3980,21 @@ interactions: ParameterSetName: - -n -g --disable-module-sas --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODY5YTQ3ZmYtMTMyNy00NTIxLThlYjctNTRhYTEwMmUzNWRlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmUMc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '2158' + - '22' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:28:06 GMT + - Tue, 18 Oct 2022 21:06:02 GMT expires: - '-1' pragma: @@ -2978,7 +4016,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2986,34 +4024,43 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g --disable-local-auth --disable-device-sas + - -n -g --disable-module-sas --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO92kw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '0' + - '2181' + content-type: + - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:28:07 GMT + - Tue, 18 Oct 2022 21:06:03 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: - code: 204 - message: No Content + code: 200 + message: OK - request: - body: '{"name": "iot-hub-for-test-11000003"}' + body: null headers: Accept: - application/json @@ -3023,20 +4070,58 @@ interactions: - iot hub update Connection: - keep-alive - Content-Length: - - '37' - Content-Type: - - application/json ParameterSetName: - -n -g --disable-local-auth --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: body: - string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name - ''iot-hub-for-test-11000003'' is not available"}' + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 18 Oct 2022 21:06:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: '{"name": "iot-hub-for-test-11000003"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + Content-Length: + - '37' + Content-Type: + - application/json + ParameterSetName: + - -n -g --disable-local-auth --disable-device-sas + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview + response: + body: + string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache @@ -3045,7 +4130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:28:09 GMT + - Tue, 18 Oct 2022 21:06:04 GMT expires: - '-1' pragma: @@ -3079,22 +4164,22 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmUMc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO92kw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2158' + - '2181' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:28:11 GMT + - Tue, 18 Oct 2022 21:06:04 GMT expires: - '-1' pragma: @@ -3113,14 +4198,15 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmUMc=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO92kw=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [], "cosmosDBSqlCollections": []}, "routes": [], "fallbackRoute": {"name": "$fallback", + "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], + "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", + "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -3137,28 +4223,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1497' + - '1527' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmUMc=''}' + - '{''IF-MATCH'': ''AAAADHO92kw=''}' ParameterSetName: - -n -g --disable-local-auth --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmUMc=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO92kw=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDg3YTAyYTYtZTJiMi00ZmZiLWFiOTgtNGRlN2Y2ZjFhMzRmO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTQ0ZDYyMjgtZmYyMS00ZWVkLTgzMzQtMDkxYTQ2MTA2NDdiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -3166,7 +4252,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:28:20 GMT + - Tue, 18 Oct 2022 21:06:07 GMT expires: - '-1' pragma: @@ -3196,9 +4282,55 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTQ0ZDYyMjgtZmYyMS00ZWVkLTgzMzQtMDkxYTQ2MTA2NDdiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:06:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub update + Connection: + - keep-alive + ParameterSetName: + - -n -g --disable-local-auth --disable-device-sas + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDg3YTAyYTYtZTJiMi00ZmZiLWFiOTgtNGRlN2Y2ZjFhMzRmO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTQ0ZDYyMjgtZmYyMS00ZWVkLTgzMzQtMDkxYTQ2MTA2NDdiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -3210,7 +4342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:28:50 GMT + - Tue, 18 Oct 2022 21:06:38 GMT expires: - '-1' pragma: @@ -3242,9 +4374,9 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDg3YTAyYTYtZTJiMi00ZmZiLWFiOTgtNGRlN2Y2ZjFhMzRmO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTQ0ZDYyMjgtZmYyMS00ZWVkLTgzMzQtMDkxYTQ2MTA2NDdiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3256,7 +4388,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:29:20 GMT + - Tue, 18 Oct 2022 21:07:08 GMT expires: - '-1' pragma: @@ -3288,22 +4420,22 @@ interactions: ParameterSetName: - -n -g --disable-local-auth --disable-device-sas User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmVM0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO932g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2160' + - '2183' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:29:21 GMT + - Tue, 18 Oct 2022 21:07:08 GMT expires: - '-1' pragma: @@ -3335,39 +4467,174 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmVM0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO932g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:29:25 GMT + - Tue, 18 Oct 2022 21:07: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 + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -3385,22 +4652,22 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmVM0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO932g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}]}' headers: cache-control: - no-cache content-length: - - '2172' + - '2195' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:29:27 GMT + - Tue, 18 Oct 2022 21:07:15 GMT expires: - '-1' pragma: @@ -3432,39 +4699,174 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmVM0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO932g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:29:29 GMT + - Tue, 18 Oct 2022 21:07:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -3482,9 +4884,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/skus?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/skus?api-version=2022-04-30-preview 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"}}]}' @@ -3496,7 +4898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:29:30 GMT + - Tue, 18 Oct 2022 21:07:24 GMT expires: - '-1' pragma: @@ -3528,39 +4930,174 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmVM0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO932g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:29:33 GMT + - Tue, 18 Oct 2022 21:07:31 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -3580,9 +5117,9 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2022-04-30-preview response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -3595,7 +5132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:29:33 GMT + - Tue, 18 Oct 2022 21:07:31 GMT expires: - '-1' pragma: @@ -3616,7 +5153,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmVM0=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO932g=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -3629,9 +5166,10 @@ interactions: "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [], "cosmosDBSqlCollections": []}, "routes": [], "fallbackRoute": {"name": "$fallback", + "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], + "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", + "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -3648,29 +5186,29 @@ interactions: Connection: - keep-alive Content-Length: - - '2174' + - '2204' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmVM0=''}' + - '{''IF-MATCH'': ''AAAADHO932g=''}' ParameterSetName: - --hub-name -n --permissions User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmVM0=","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-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO932g=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWU2NjU1MTUtZGU2MC00ZTExLWE1ZmQtNDk0NmRiODkzNDQ4O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjU1ZjNiMzUtZTkzYi00ODE5LTkxMjctMDE0OWFhMjc1MTkzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -3678,7 +5216,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:29:40 GMT + - Tue, 18 Oct 2022 21:07:34 GMT expires: - '-1' pragma: @@ -3708,21 +5246,21 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWU2NjU1MTUtZGU2MC00ZTExLWE1ZmQtNDk0NmRiODkzNDQ4O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjU1ZjNiMzUtZTkzYi00ODE5LTkxMjctMDE0OWFhMjc1MTkzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Pending"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:30:10 GMT + - Tue, 18 Oct 2022 21:07:34 GMT expires: - '-1' pragma: @@ -3754,22 +5292,21 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjU1ZjNiMzUtZTkzYi00ODE5LTkxMjctMDE0OWFhMjc1MTkzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmV5A=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '2160' + - '22' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:30:11 GMT + - Tue, 18 Oct 2022 21:08:04 GMT expires: - '-1' pragma: @@ -3791,35 +5328,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - iot hub policy list + - iot hub policy create Connection: - keep-alive ParameterSetName: - - --hub-name + - --hub-name -n --permissions User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmV5A=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO95aA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '4335' + - '2183' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:30:15 GMT + - Tue, 18 Oct 2022 21:08:05 GMT expires: - '-1' pragma: @@ -3828,6 +5362,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -3844,40 +5382,177 @@ interactions: - iot hub policy list Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2021-07-02 - 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"},{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}]}' + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO95aA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '677' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:30:15 GMT + - Tue, 18 Oct 2022 21:08:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -3889,31 +5564,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub policy show + - iot hub policy list Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --hub-name -n + - --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmV5A=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + 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"},{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '677' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:30:17 GMT + - Tue, 18 Oct 2022 21:08:13 GMT expires: - '-1' pragma: @@ -3922,8 +5597,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-writes: + - '1199' status: code: 200 message: OK @@ -3938,19 +5619,204 @@ interactions: - iot hub policy show Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/test_policy/listkeys?api-version=2021-07-02 - response: - body: - string: '{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}' - headers: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO95aA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '178640' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:08:21 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub policy show + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - --hub-name -n + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/test_policy/listkeys?api-version=2022-04-30-preview + response: + body: + string: '{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"}' + headers: cache-control: - no-cache content-length: @@ -3958,7 +5824,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:30:18 GMT + - Tue, 18 Oct 2022 21:08:21 GMT expires: - '-1' pragma: @@ -3967,6 +5833,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-writes: @@ -3988,35 +5858,174 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmV5A=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO95aA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:30:21 GMT + - Tue, 18 Oct 2022 21:08:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -4036,9 +6045,9 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2022-04-30-preview response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -4052,7 +6061,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:30:22 GMT + - Tue, 18 Oct 2022 21:08:29 GMT expires: - '-1' pragma: @@ -4061,15 +6070,19 @@ 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-writes: - - '1197' + - '1199' status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmV5A=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO95aA=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -4082,9 +6095,9 @@ interactions: false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": []}, "routes": - [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": @@ -4102,30 +6115,30 @@ interactions: Connection: - keep-alive Content-Length: - - '2226' + - '2256' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmV5A=''}' + - '{''IF-MATCH'': ''AAAADHO95aA=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmV5A=","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-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO95aA=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:30:02 GMT","ModifiedTime":"Wed, 11 May 2022 06:30:02 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:30:02 GMT","ModifiedTime":"Wed, 11 May 2022 06:30:02 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:30:02 GMT","ModifiedTime":"Wed, 11 May 2022 06:30:02 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:07:45 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:07:45 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:07:45 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:07:45 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:07:45 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:07:45 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYTRhNDgyNWUtNTJkYi00Mzg4LTg4OTctNjFkMTM1OWMzNDBiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTU3YmNlNzktMGFhNC00OTViLTkzNDAtNzdmYjBiYWVkODI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -4133,7 +6146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:30:28 GMT + - Tue, 18 Oct 2022 21:08:32 GMT expires: - '-1' pragma: @@ -4163,21 +6176,21 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYTRhNDgyNWUtNTJkYi00Mzg4LTg4OTctNjFkMTM1OWMzNDBiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTU3YmNlNzktMGFhNC00OTViLTkzNDAtNzdmYjBiYWVkODI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Pending"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:30:59 GMT + - Tue, 18 Oct 2022 21:08:32 GMT expires: - '-1' pragma: @@ -4186,6 +6199,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -4205,22 +6222,21 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTU3YmNlNzktMGFhNC00OTViLTkzNDAtNzdmYjBiYWVkODI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmW3w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '2160' + - '22' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:00 GMT + - Tue, 18 Oct 2022 21:09:02 GMT expires: - '-1' pragma: @@ -4229,6 +6245,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -4238,7 +6258,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -4248,25 +6268,22 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmW3w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO967A=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '4335' + - '2183' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:01 GMT + - Tue, 18 Oct 2022 21:09:03 GMT expires: - '-1' pragma: @@ -4275,11 +6292,200 @@ 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: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub policy renew-key + Connection: + - keep-alive + ParameterSetName: + - --hub-name -n --renew-key + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO967A=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '178640' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:09:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + status: + code: 200 + message: OK - request: body: null headers: @@ -4296,9 +6502,9 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/test_policy/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/test_policy/listkeys?api-version=2022-04-30-preview response: body: string: '{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -4311,7 +6517,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:02 GMT + - Tue, 18 Oct 2022 21:09:10 GMT expires: - '-1' pragma: @@ -4320,10 +6526,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-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -4341,39 +6551,174 @@ interactions: ParameterSetName: - -n --policy-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmW3w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO967A=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:05 GMT + - Tue, 18 Oct 2022 21:09: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 + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -4393,9 +6738,9 @@ interactions: ParameterSetName: - -n --policy-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/test_policy/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/test_policy/listkeys?api-version=2022-04-30-preview response: body: string: '{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -4408,7 +6753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:05 GMT + - Tue, 18 Oct 2022 21:09:17 GMT expires: - '-1' pragma: @@ -4442,39 +6787,174 @@ interactions: ParameterSetName: - -n --policy-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmW3w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO967A=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:06 GMT + - Tue, 18 Oct 2022 21:09: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 + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -4492,39 +6972,174 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmW3w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO967A=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:09 GMT + - Tue, 18 Oct 2022 21:09: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 + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -4544,9 +7159,9 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2022-04-30-preview response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -4560,7 +7175,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:09 GMT + - Tue, 18 Oct 2022 21:09:33 GMT expires: - '-1' pragma: @@ -4576,12 +7191,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmW3w=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO967A=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -4594,9 +7209,9 @@ interactions: false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": - [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": []}, "routes": - [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": @@ -4614,30 +7229,30 @@ interactions: Connection: - keep-alive Content-Length: - - '2226' + - '2256' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmW3w=''}' + - '{''IF-MATCH'': ''AAAADHO967A=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmW3w=","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-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO967A=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:30:50 GMT","ModifiedTime":"Wed, 11 May 2022 06:30:50 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:30:50 GMT","ModifiedTime":"Wed, 11 May 2022 06:30:50 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:30:50 GMT","ModifiedTime":"Wed, 11 May 2022 06:30:50 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:08:42 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:08:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:08:42 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:08:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:08:42 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:08:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmZiNmI1NGUtYmJjYy00ZmQyLWEzMzgtZjcxNjIxNjU3OTk0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDBkNmVjZjUtMTdiNC00NTg5LWJiNzAtYzFkMzRhOWExMWVlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -4645,7 +7260,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:14 GMT + - Tue, 18 Oct 2022 21:09:36 GMT expires: - '-1' pragma: @@ -4657,7 +7272,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -4675,21 +7290,21 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmZiNmI1NGUtYmJjYy00ZmQyLWEzMzgtZjcxNjIxNjU3OTk0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDBkNmVjZjUtMTdiNC00NTg5LWJiNzAtYzFkMzRhOWExMWVlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Pending"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:45 GMT + - Tue, 18 Oct 2022 21:09:36 GMT expires: - '-1' pragma: @@ -4721,22 +7336,21 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDBkNmVjZjUtMTdiNC00NTg5LWJiNzAtYzFkMzRhOWExMWVlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmXys=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '2160' + - '22' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:46 GMT + - Tue, 18 Oct 2022 21:10:06 GMT expires: - '-1' pragma: @@ -4758,7 +7372,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -4768,25 +7382,22 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmXys=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO98I0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '4335' + - '2183' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:46 GMT + - Tue, 18 Oct 2022 21:10:07 GMT expires: - '-1' pragma: @@ -4804,6 +7415,191 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub policy renew-key + Connection: + - keep-alive + ParameterSetName: + - --hub-name -n --renew-key + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO98I0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '178640' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:10:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + status: + code: 200 + message: OK - request: body: null headers: @@ -4820,9 +7616,9 @@ interactions: ParameterSetName: - --hub-name -n --renew-key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/test_policy/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubKeys/test_policy/listkeys?api-version=2022-04-30-preview response: body: string: '{"keyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -4835,7 +7631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:47 GMT + - Tue, 18 Oct 2022 21:10:14 GMT expires: - '-1' pragma: @@ -4851,7 +7647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -4869,39 +7665,174 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmXys=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO98I0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:50 GMT + - Tue, 18 Oct 2022 21:10:21 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -4921,9 +7852,9 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2022-04-30-preview response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -4937,7 +7868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:50 GMT + - Tue, 18 Oct 2022 21:10:21 GMT expires: - '-1' pragma: @@ -4953,7 +7884,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -4973,9 +7904,9 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2022-04-30-preview response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -4989,7 +7920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:51 GMT + - Tue, 18 Oct 2022 21:10:21 GMT expires: - '-1' pragma: @@ -5005,12 +7936,12 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmXys=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO98I0=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -5022,9 +7953,10 @@ interactions: "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [], "cosmosDBSqlCollections": []}, "routes": [], "fallbackRoute": {"name": "$fallback", + "source": "DeviceMessages", "condition": "true", "endpointNames": ["events"], + "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", + "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -5033,45 +7965,89 @@ interactions: "sku": {"name": "S1", "capacity": 1}, "identity": {"type": "None"}}' headers: Accept: - - application/json + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub policy delete + Connection: + - keep-alive + Content-Length: + - '2118' + Content-Type: + - application/json + If-Match: + - '{''IF-MATCH'': ''AAAADHO98I0=''}' + ParameterSetName: + - --hub-name -n + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO98I0=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:09:45 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:09:45 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:09:45 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:09:45 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:09:45 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:09:45 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODdmNWQ2ZDMtMDgwNS00NjBhLWEwNDAtMWExY2JiMDliOTZhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + cache-control: + - no-cache + content-length: + - '4215' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:10:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '4999' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - iot hub policy delete Connection: - keep-alive - Content-Length: - - '2088' - Content-Type: - - application/json - If-Match: - - '{''IF-MATCH'': ''AAAADGgmXys=''}' ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODdmNWQ2ZDMtMDgwNS00NjBhLWEwNDAtMWExY2JiMDliOTZhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmXys=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:31:37 GMT","ModifiedTime":"Wed, 11 May 2022 06:31:37 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:31:37 GMT","ModifiedTime":"Wed, 11 May 2022 06:31:37 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:31:37 GMT","ModifiedTime":"Wed, 11 May 2022 06:31:37 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"status":"Pending"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjM4MmExZWItYjJhOC00NjU0LTljOTktYjIwNjYyZWQ0YWRiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '4215' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:31:59 GMT + - Tue, 18 Oct 2022 21:10:25 GMT expires: - '-1' pragma: @@ -5080,13 +8056,15 @@ 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-resource-requests: - - '4999' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -5101,9 +8079,9 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjM4MmExZWItYjJhOC00NjU0LTljOTktYjIwNjYyZWQ0YWRiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODdmNWQ2ZDMtMDgwNS00NjBhLWEwNDAtMWExY2JiMDliOTZhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -5115,7 +8093,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:32:29 GMT + - Tue, 18 Oct 2022 21:10:54 GMT expires: - '-1' pragma: @@ -5147,22 +8125,22 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmYbI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2160' + - '2183' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:32:30 GMT + - Tue, 18 Oct 2022 21:10:55 GMT expires: - '-1' pragma: @@ -5194,39 +8172,174 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmYbI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:32:33 GMT + - Tue, 18 Oct 2022 21:11:03 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -5246,9 +8359,9 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/listkeys?api-version=2022-04-30-preview response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -5261,7 +8374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:32:34 GMT + - Tue, 18 Oct 2022 21:11:03 GMT expires: - '-1' pragma: @@ -5277,7 +8390,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -5295,39 +8408,174 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmYbI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:32:37 GMT + - Tue, 18 Oct 2022 21:11:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -5349,12 +8597,12 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2022-04-30-preview response: body: - string: '{"properties":{"created":"Wed, 11 May 2022 06:32:40 GMT","properties":{"name":"cg1"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' + string: '{"properties":{"created":"Tue, 18 Oct 2022 21:11:15 GMT","properties":{"name":"cg1"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache @@ -5363,7 +8611,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:32:39 GMT + - Tue, 18 Oct 2022 21:11:15 GMT expires: - '-1' pragma: @@ -5397,39 +8645,174 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmYbI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:32:43 GMT + - Tue, 18 Oct 2022 21:11:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -5447,12 +8830,12 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2022-04-30-preview response: body: - string: '{"properties":{"created":"Wed, 11 May 2022 06:32:40 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' + string: '{"properties":{"created":"Tue, 18 Oct 2022 21:11:15 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache @@ -5461,7 +8844,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:32:44 GMT + - Tue, 18 Oct 2022 21:11:23 GMT expires: - '-1' pragma: @@ -5493,39 +8876,174 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmYbI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:32:48 GMT + - Tue, 18 Oct 2022 21:11:30 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -5543,13 +9061,13 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups?api-version=2022-04-30-preview response: body: - string: '{"value":[{"properties":{"created":"Wed, 11 May 2022 06:24:25 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Wed, - 11 May 2022 06:32:40 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"value":[{"properties":{"created":"Tue, 18 Oct 2022 21:02:08 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Tue, + 18 Oct 2022 21:11:15 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: cache-control: - no-cache @@ -5558,7 +9076,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:32:48 GMT + - Tue, 18 Oct 2022 21:11:31 GMT expires: - '-1' pragma: @@ -5590,39 +9108,174 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmYbI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:32:52 GMT + - Tue, 18 Oct 2022 21:11:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -5642,9 +9295,9 @@ interactions: ParameterSetName: - --hub-name -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2022-04-30-preview response: body: string: '' @@ -5654,7 +9307,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:32:52 GMT + - Tue, 18 Oct 2022 21:11:39 GMT expires: - '-1' pragma: @@ -5684,35 +9337,174 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmYbI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:33:00 GMT + - Tue, 18 Oct 2022 21:11:47 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -5730,12 +9522,12 @@ interactions: ParameterSetName: - --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups?api-version=2022-04-30-preview response: body: - string: '{"value":[{"properties":{"created":"Wed, 11 May 2022 06:24:25 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"value":[{"properties":{"created":"Tue, 18 Oct 2022 21:02:08 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: cache-control: - no-cache @@ -5744,7 +9536,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:33:01 GMT + - Tue, 18 Oct 2022 21:11:48 GMT expires: - '-1' pragma: @@ -5753,6 +9545,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -5772,35 +9568,174 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmYbI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:33:05 GMT + - Tue, 18 Oct 2022 21:11:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -5818,9 +9753,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/quotaMetrics?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/quotaMetrics?api-version=2022-04-30-preview response: body: string: '{"value":[{"name":"TotalMessages","currentValue":0,"maxValue":400000},{"name":"TotalDeviceCount","currentValue":0,"maxValue":1000000}]}' @@ -5832,7 +9767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:33:06 GMT + - Tue, 18 Oct 2022 21:11:55 GMT expires: - '-1' pragma: @@ -5841,6 +9776,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -5860,35 +9799,174 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmYbI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '4335' + - '178640' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:33:09 GMT + - Tue, 18 Oct 2022 21:12:02 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -5906,9 +9984,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubStats?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/IotHubStats?api-version=2022-04-30-preview response: body: string: '{"totalDeviceCount":0,"enabledDeviceCount":0,"disabledDeviceCount":0}' @@ -5920,7 +9998,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:33:10 GMT + - Tue, 18 Oct 2022 21:12:02 GMT expires: - '-1' pragma: @@ -5929,6 +10007,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -5948,7 +10030,7 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -5960,7 +10042,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:33:13 GMT + - Tue, 18 Oct 2022 21:12:03 GMT expires: - '-1' pragma: @@ -5990,9 +10072,9 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -6005,7 +10087,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:33:14 GMT + - Tue, 18 Oct 2022 21:12:03 GMT expires: - '-1' pragma: @@ -6014,6 +10096,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-writes: @@ -6035,22 +10121,22 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmYbI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2160' + - '2183' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:33:17 GMT + - Tue, 18 Oct 2022 21:12:04 GMT expires: - '-1' pragma: @@ -6059,23 +10145,22 @@ 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: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmYbI=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO989s=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"connectionString": - "Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006", - "name": "Event1", "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -6092,36 +10177,36 @@ interactions: Connection: - keep-alive Content-Length: - - '1852' + - '1064' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmYbI=''}' + - '{''IF-MATCH'': ''AAAADHO989s=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmYbI=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTJmZWZhYTUtMmRiMi00MmVhLWE0OTUtZTQ4ZmQ2NDk2ZDc3O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGZmZGM4Y2UtYjliMC00YWFiLTg4ODAtM2U5YWIyMzNmODhiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '4368' + - '3475' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:33:25 GMT + - Tue, 18 Oct 2022 21:12:07 GMT expires: - '-1' pragma: @@ -6151,9 +10236,55 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGZmZGM4Y2UtYjliMC00YWFiLTg4ODAtM2U5YWIyMzNmODhiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:12:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub routing-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n -t -r -s -c + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTJmZWZhYTUtMmRiMi00MmVhLWE0OTUtZTQ4ZmQ2NDk2ZDc3O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGZmZGM4Y2UtYjliMC00YWFiLTg4ODAtM2U5YWIyMzNmODhiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -6165,7 +10296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:33:55 GMT + - Tue, 18 Oct 2022 21:12:38 GMT expires: - '-1' pragma: @@ -6174,6 +10305,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -6193,22 +10328,22 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmaAM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9+dU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2517' + - '2540' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:33:56 GMT + - Tue, 18 Oct 2022 21:12:39 GMT expires: - '-1' pragma: @@ -6217,6 +10352,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -6236,7 +10375,7 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -6248,7 +10387,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:33:59 GMT + - Tue, 18 Oct 2022 21:12:38 GMT expires: - '-1' pragma: @@ -6278,9 +10417,9 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -6293,7 +10432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:34:01 GMT + - Tue, 18 Oct 2022 21:12:40 GMT expires: - '-1' pragma: @@ -6309,7 +10448,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -6327,22 +10466,22 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmaAM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9+dU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2517' + - '2540' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:34:03 GMT + - Tue, 18 Oct 2022 21:12:41 GMT expires: - '-1' pragma: @@ -6374,7 +10513,7 @@ interactions: ParameterSetName: - --hub-name -g -t User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -6386,7 +10525,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:34:05 GMT + - Tue, 18 Oct 2022 21:12:40 GMT expires: - '-1' pragma: @@ -6416,9 +10555,9 @@ interactions: ParameterSetName: - --hub-name -g -t User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -6431,7 +10570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:34:08 GMT + - Tue, 18 Oct 2022 21:12:41 GMT expires: - '-1' pragma: @@ -6440,10 +10579,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-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -6461,22 +10604,22 @@ interactions: ParameterSetName: - --hub-name -g -t User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmaAM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9+dU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2517' + - '2540' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:34:09 GMT + - Tue, 18 Oct 2022 21:12:42 GMT expires: - '-1' pragma: @@ -6485,6 +10628,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -6504,7 +10651,7 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -6516,7 +10663,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:34:14 GMT + - Tue, 18 Oct 2022 21:12:42 GMT expires: - '-1' pragma: @@ -6546,9 +10693,9 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -6561,7 +10708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:34:16 GMT + - Tue, 18 Oct 2022 21:12:43 GMT expires: - '-1' pragma: @@ -6595,22 +10742,22 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmaAM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9+dU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2517' + - '2540' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:34:17 GMT + - Tue, 18 Oct 2022 21:12:44 GMT expires: - '-1' pragma: @@ -6642,7 +10789,7 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -6654,7 +10801,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:34:20 GMT + - Tue, 18 Oct 2022 21:12:44 GMT expires: - '-1' pragma: @@ -6684,9 +10831,9 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -6699,7 +10846,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:34:21 GMT + - Tue, 18 Oct 2022 21:12:45 GMT expires: - '-1' pragma: @@ -6715,7 +10862,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -6733,22 +10880,22 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmaAM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9+dU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2517' + - '2540' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:34:22 GMT + - Tue, 18 Oct 2022 21:12:45 GMT expires: - '-1' pragma: @@ -6767,21 +10914,21 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmaAM=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO9+dU=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "c9015073-afaf-40f4-81c5-fb0d8ba44763", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], - "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": @@ -6799,36 +10946,36 @@ interactions: Connection: - keep-alive Content-Length: - - '2564' + - '2594' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmaAM=''}' + - '{''IF-MATCH'': ''AAAADHO9+dU=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmaAM=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9+dU=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzQ3MTFkMmUtNzdkZi00MWMxLWE4ODUtMWJiNTk1ZGMyMmI5O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDlkODZjYzQtYWE2MC00OTczLWJhYzgtZTQ5ZjNhYTJjYjg4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '5096' + - '3475' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:34:28 GMT + - Tue, 18 Oct 2022 21:12:49 GMT expires: - '-1' pragma: @@ -6858,9 +11005,55 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDlkODZjYzQtYWE2MC00OTczLWJhYzgtZTQ5ZjNhYTJjYjg4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:12: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub routing-endpoint create + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzQ3MTFkMmUtNzdkZi00MWMxLWE4ODUtMWJiNTk1ZGMyMmI5O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDlkODZjYzQtYWE2MC00OTczLWJhYzgtZTQ5ZjNhYTJjYjg4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -6872,7 +11065,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:34:59 GMT + - Tue, 18 Oct 2022 21:13:20 GMT expires: - '-1' pragma: @@ -6904,22 +11097,22 @@ interactions: ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgma/Q=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9++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-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3221' + - '3244' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:35:00 GMT + - Tue, 18 Oct 2022 21:13:21 GMT expires: - '-1' pragma: @@ -6951,7 +11144,7 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -6963,7 +11156,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:35:04 GMT + - Tue, 18 Oct 2022 21:13:21 GMT expires: - '-1' pragma: @@ -6993,9 +11186,9 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -7008,7 +11201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:35:06 GMT + - Tue, 18 Oct 2022 21:13:21 GMT expires: - '-1' pragma: @@ -7024,7 +11217,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -7042,22 +11235,22 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgma/Q=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9++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-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3221' + - '3244' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:35:08 GMT + - Tue, 18 Oct 2022 21:13:22 GMT expires: - '-1' pragma: @@ -7076,24 +11269,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgma/Q=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO9++8=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "c9015073-afaf-40f4-81c5-fb0d8ba44763", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -7110,36 +11303,36 @@ interactions: Connection: - keep-alive Content-Length: - - '2701' + - '2731' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgma/Q=''}' + - '{''IF-MATCH'': ''AAAADHO9++8=''}' ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgma/Q=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9++8=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjkyMDM1MzctMDQwMi00NDNlLWFhMmMtZTJmNjQ1Y2EyNGFiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmNjZWVjMjQtODI1YS00MzcxLTg5NGQtYmY2YWQ4NWMwYmNkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '5202' + - '3475' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:35:16 GMT + - Tue, 18 Oct 2022 21:13:26 GMT expires: - '-1' pragma: @@ -7169,12 +11362,12 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjkyMDM1MzctMDQwMi00NDNlLWFhMmMtZTJmNjQ1Y2EyNGFiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmNjZWVjMjQtODI1YS00MzcxLTg5NGQtYmY2YWQ4NWMwYmNkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"status":"Running"}' + string: '{"status":"Pending"}' headers: cache-control: - no-cache @@ -7183,7 +11376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:35:46 GMT + - Tue, 18 Oct 2022 21:13:26 GMT expires: - '-1' pragma: @@ -7215,21 +11408,21 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjkyMDM1MzctMDQwMi00NDNlLWFhMmMtZTJmNjQ1Y2EyNGFiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmNjZWVjMjQtODI1YS00MzcxLTg5NGQtYmY2YWQ4NWMwYmNkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"status":"Running"}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '20' + - '22' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:36:16 GMT + - Tue, 18 Oct 2022 21:13:56 GMT expires: - '-1' pragma: @@ -7261,21 +11454,22 @@ interactions: ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjkyMDM1MzctMDQwMi00NDNlLWFhMmMtZTJmNjQ1Y2EyNGFiO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '22' + - '3350' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:36:46 GMT + - Tue, 18 Oct 2022 21:13:57 GMT expires: - '-1' pragma: @@ -7297,32 +11491,74 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - iot hub route create + - iot hub route list Connection: - keep-alive ParameterSetName: - - --hub-name -g -n -s --en -c -e + - --hub-name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: HEAD + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 18 Oct 2022 21:13:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 204 + message: No Content +- request: + body: '{"name": "iot-hub-for-test-11000003"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub route list + Connection: + - keep-alive + Content-Length: + - '37' + Content-Type: + - application/json + ParameterSetName: + - --hub-name -g + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmcig=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name + ''iot-hub-for-test-11000003'' is not available"}' headers: cache-control: - no-cache content-length: - - '3327' + - '117' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:36:47 GMT + - Tue, 18 Oct 2022 21:13:59 GMT expires: - '-1' pragma: @@ -7337,6 +11573,8 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -7354,7 +11592,54 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + headers: + cache-control: + - no-cache + content-length: + - '3350' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:14:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub route list + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -s + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -7366,7 +11651,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:36:50 GMT + - Tue, 18 Oct 2022 21:13:59 GMT expires: - '-1' pragma: @@ -7394,11 +11679,11 @@ interactions: Content-Type: - application/json ParameterSetName: - - --hub-name -g + - --hub-name -g -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -7411,7 +11696,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:36:52 GMT + - Tue, 18 Oct 2022 21:14:00 GMT expires: - '-1' pragma: @@ -7427,7 +11712,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -7443,24 +11728,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - --hub-name -g + - --hub-name -g -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmcig=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3327' + - '3350' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:36:54 GMT + - Tue, 18 Oct 2022 21:14:01 GMT expires: - '-1' pragma: @@ -7486,13 +11771,13 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub route list + - iot hub route show Connection: - keep-alive ParameterSetName: - - --hub-name -g -s + - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -7504,7 +11789,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:36:57 GMT + - Tue, 18 Oct 2022 21:14:02 GMT expires: - '-1' pragma: @@ -7524,7 +11809,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub route list + - iot hub route show Connection: - keep-alive Content-Length: @@ -7532,11 +11817,11 @@ interactions: Content-Type: - application/json ParameterSetName: - - --hub-name -g -s + - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -7549,7 +11834,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:36:59 GMT + - Tue, 18 Oct 2022 21:14:02 GMT expires: - '-1' pragma: @@ -7565,7 +11850,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -7577,28 +11862,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub route list + - iot hub route show Connection: - keep-alive ParameterSetName: - - --hub-name -g -s + - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmcig=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3327' + - '3350' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:37:00 GMT + - Tue, 18 Oct 2022 21:14:03 GMT expires: - '-1' pragma: @@ -7624,13 +11909,13 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub route show + - iot hub route test Connection: - keep-alive ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -7642,7 +11927,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:37:04 GMT + - Tue, 18 Oct 2022 21:14:03 GMT expires: - '-1' pragma: @@ -7662,7 +11947,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub route show + - iot hub route test Connection: - keep-alive Content-Length: @@ -7672,9 +11957,9 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -7687,7 +11972,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:37:06 GMT + - Tue, 18 Oct 2022 21:14:04 GMT expires: - '-1' pragma: @@ -7703,7 +11988,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -7715,28 +12000,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub route show + - iot hub route test Connection: - keep-alive ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmcig=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3327' + - '3350' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:37:08 GMT + - Tue, 18 Oct 2022 21:14:05 GMT expires: - '-1' pragma: @@ -7755,7 +12040,8 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"message": {}, "route": {"name": "route1", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["Event1"], "isEnabled": true}}' headers: Accept: - application/json @@ -7765,10 +12051,62 @@ interactions: - iot hub route test Connection: - keep-alive + Content-Length: + - '141' + Content-Type: + - application/json ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/routing/routes/$testnew?api-version=2022-04-30-preview + response: + body: + string: '{"result":"true"}' + headers: + cache-control: + - no-cache + content-length: + - '17' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:14:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-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 route test + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n --sp --ap + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -7780,7 +12118,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:37:11 GMT + - Tue, 18 Oct 2022 21:14:05 GMT expires: - '-1' pragma: @@ -7808,11 +12146,11 @@ interactions: Content-Type: - application/json ParameterSetName: - - --hub-name -g -n + - --hub-name -g -n --sp --ap User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -7825,7 +12163,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:37:13 GMT + - Tue, 18 Oct 2022 21:14:06 GMT expires: - '-1' pragma: @@ -7857,24 +12195,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - --hub-name -g -n + - --hub-name -g -n --sp --ap User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmcig=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3327' + - '3350' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:37:15 GMT + - Tue, 18 Oct 2022 21:14:07 GMT expires: - '-1' pragma: @@ -7893,8 +12231,9 @@ interactions: code: 200 message: OK - request: - body: '{"message": {}, "route": {"name": "route1", "source": "DeviceMessages", - "condition": "true", "endpointNames": ["Event1"], "isEnabled": true}}' + body: '{"message": {"appProperties": {"body": "4"}, "systemProperties": {"body": + "4"}}, "route": {"name": "route1", "source": "DeviceMessages", "condition": + "true", "endpointNames": ["Event1"], "isEnabled": true}}' headers: Accept: - application/json @@ -7905,15 +12244,15 @@ interactions: Connection: - keep-alive Content-Length: - - '141' + - '206' Content-Type: - application/json ParameterSetName: - - --hub-name -g -n + - --hub-name -g -n --sp --ap User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/routing/routes/$testnew?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/routing/routes/$testnew?api-version=2022-04-30-preview response: body: string: '{"result":"true"}' @@ -7925,7 +12264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:37:15 GMT + - Tue, 18 Oct 2022 21:14:07 GMT expires: - '-1' pragma: @@ -7963,9 +12302,9 @@ interactions: ParameterSetName: - --hub-name -g -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/routing/routes/$testall?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/routing/routes/$testall?api-version=2022-04-30-preview response: body: string: '{"routes":[{"properties":{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["Event1"],"isEnabled":true}}]}' @@ -7977,7 +12316,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:37:19 GMT + - Tue, 18 Oct 2022 21:14:09 GMT expires: - '-1' pragma: @@ -7993,7 +12332,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -8011,7 +12350,7 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -8020,10 +12359,12 @@ interactions: headers: cache-control: - no-cache + connection: + - close content-length: - '0' date: - - Wed, 11 May 2022 06:37:25 GMT + - Tue, 18 Oct 2022 21:14:09 GMT expires: - '-1' pragma: @@ -8053,9 +12394,9 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -8068,7 +12409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:37:27 GMT + - Tue, 18 Oct 2022 21:14:09 GMT expires: - '-1' pragma: @@ -8084,7 +12425,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -8102,22 +12443,22 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmcig=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3327' + - '3350' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:37:29 GMT + - Tue, 18 Oct 2022 21:14:10 GMT expires: - '-1' pragma: @@ -8136,24 +12477,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmcig=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO9/kM=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "c9015073-afaf-40f4-81c5-fb0d8ba44763", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -8170,36 +12511,36 @@ interactions: Connection: - keep-alive Content-Length: - - '2701' + - '2731' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmcig=''}' + - '{''IF-MATCH'': ''AAAADHO9/kM=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmcig=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDQzZjdmYjctNzQxMi00NzY3LWExMWItYTFjOWYwZWY5MDQzO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTE4YzcwYjgtODM4Mi00MGYyLTg5NGMtNDRiOTk2Mjg3ZDBjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '5202' + - '3475' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:37:34 GMT + - Tue, 18 Oct 2022 21:14:13 GMT expires: - '-1' pragma: @@ -8211,7 +12552,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -8229,9 +12570,55 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTE4YzcwYjgtODM4Mi00MGYyLTg5NGMtNDRiOTk2Mjg3ZDBjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:14:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub route update + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n -s + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDQzZjdmYjctNzQxMi00NzY3LWExMWItYTFjOWYwZWY5MDQzO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTE4YzcwYjgtODM4Mi00MGYyLTg5NGMtNDRiOTk2Mjg3ZDBjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8243,7 +12630,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:38:05 GMT + - Tue, 18 Oct 2022 21:14:43 GMT expires: - '-1' pragma: @@ -8275,22 +12662,22 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmeeA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+ABE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3327' + - '3350' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:38:05 GMT + - Tue, 18 Oct 2022 21:14:44 GMT expires: - '-1' pragma: @@ -8322,7 +12709,7 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -8334,7 +12721,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:38:09 GMT + - Tue, 18 Oct 2022 21:14:45 GMT expires: - '-1' pragma: @@ -8364,9 +12751,9 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -8379,7 +12766,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:38:10 GMT + - Tue, 18 Oct 2022 21:14:45 GMT expires: - '-1' pragma: @@ -8395,7 +12782,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -8413,22 +12800,22 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmeeA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+ABE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3327' + - '3350' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:38:12 GMT + - Tue, 18 Oct 2022 21:14:46 GMT expires: - '-1' pragma: @@ -8447,24 +12834,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmeeA=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+ABE=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "c9015073-afaf-40f4-81c5-fb0d8ba44763", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -8481,36 +12868,36 @@ interactions: Connection: - keep-alive Content-Length: - - '2703' + - '2733' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmeeA=''}' + - '{''IF-MATCH'': ''AAAADHO+ABE=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmeeA=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+ABE=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYTlmYzQ4NzgtNWQ0ZC00M2JmLTgyMjctMGZmMjlhOTYxZjdjO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWVmY2FjMDktNWVmZS00YjIzLWFhMGItNGFmYTNiN2QzZDRmO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '5204' + - '3475' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:38:19 GMT + - Tue, 18 Oct 2022 21:14:49 GMT expires: - '-1' pragma: @@ -8540,9 +12927,55 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWVmY2FjMDktNWVmZS00YjIzLWFhMGItNGFmYTNiN2QzZDRmO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:14: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub route update + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n -s + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYTlmYzQ4NzgtNWQ0ZC00M2JmLTgyMjctMGZmMjlhOTYxZjdjO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWVmY2FjMDktNWVmZS00YjIzLWFhMGItNGFmYTNiN2QzZDRmO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8554,7 +12987,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:38:49 GMT + - Tue, 18 Oct 2022 21:15:19 GMT expires: - '-1' pragma: @@ -8586,22 +13019,22 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmfIU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+AYg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3329' + - '3352' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:38:50 GMT + - Tue, 18 Oct 2022 21:15:21 GMT expires: - '-1' pragma: @@ -8633,7 +13066,7 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -8645,7 +13078,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:38:55 GMT + - Tue, 18 Oct 2022 21:15:21 GMT expires: - '-1' pragma: @@ -8675,9 +13108,9 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -8690,7 +13123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:38:57 GMT + - Tue, 18 Oct 2022 21:15:21 GMT expires: - '-1' pragma: @@ -8706,7 +13139,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -8724,22 +13157,22 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmfIU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+AYg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3329' + - '3352' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:38:59 GMT + - Tue, 18 Oct 2022 21:15:22 GMT expires: - '-1' pragma: @@ -8758,24 +13191,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmfIU=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+AYg=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "c9015073-afaf-40f4-81c5-fb0d8ba44763", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [{"name": - "route1", "source": "devicelifecycleevents", "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "routes": [{"name": "route1", "source": "devicelifecycleevents", "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -8792,36 +13225,36 @@ interactions: Connection: - keep-alive Content-Length: - - '2708' + - '2738' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmfIU=''}' + - '{''IF-MATCH'': ''AAAADHO+AYg=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmfIU=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[{"name":"route1","source":"DeviceLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+AYg=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDFjMzhkNGQtODdiNS00OTIzLWFiNjYtN2U5NTQyMDcyOWVmO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDE0ZjJjNzMtYzM2OC00OWVkLTlhZjMtZDAyNTE0ZGJhMzM2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '5209' + - '3475' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:39:04 GMT + - Tue, 18 Oct 2022 21:15:26 GMT expires: - '-1' pragma: @@ -8833,7 +13266,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -8851,9 +13284,55 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDE0ZjJjNzMtYzM2OC00OWVkLTlhZjMtZDAyNTE0ZGJhMzM2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:15:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub route update + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n -s + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDFjMzhkNGQtODdiNS00OTIzLWFiNjYtN2U5NTQyMDcyOWVmO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDE0ZjJjNzMtYzM2OC00OWVkLTlhZjMtZDAyNTE0ZGJhMzM2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8865,7 +13344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:39:35 GMT + - Tue, 18 Oct 2022 21:15:57 GMT expires: - '-1' pragma: @@ -8897,22 +13376,22 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmfys=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+A/w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3334' + - '3357' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:39:35 GMT + - Tue, 18 Oct 2022 21:15:58 GMT expires: - '-1' pragma: @@ -8944,7 +13423,7 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -8956,7 +13435,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:39:41 GMT + - Tue, 18 Oct 2022 21:15:58 GMT expires: - '-1' pragma: @@ -8986,9 +13465,9 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -9001,7 +13480,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:39:42 GMT + - Tue, 18 Oct 2022 21:15:59 GMT expires: - '-1' pragma: @@ -9035,22 +13514,22 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmfys=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+A/w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3334' + - '3357' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:39:44 GMT + - Tue, 18 Oct 2022 21:15:59 GMT expires: - '-1' pragma: @@ -9069,24 +13548,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmfys=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+A/w=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "c9015073-afaf-40f4-81c5-fb0d8ba44763", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [{"name": - "route1", "source": "devicejoblifecycleevents", "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "routes": [{"name": "route1", "source": "devicejoblifecycleevents", "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -9095,44 +13574,88 @@ interactions: "sku": {"name": "S1", "capacity": 1}, "identity": {"type": "None"}}' headers: Accept: - - application/json + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub route update + Connection: + - keep-alive + Content-Length: + - '2741' + Content-Type: + - application/json + If-Match: + - '{''IF-MATCH'': ''AAAADHO+A/w=''}' + ParameterSetName: + - --hub-name -g -n -s + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+A/w=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODgxNWI5ZGMtOTA4Yi00ZWMyLWE1ODYtOTRmYmY0ZWNhMDMyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + cache-control: + - no-cache + content-length: + - '3475' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:16:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '4999' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - iot hub route update Connection: - keep-alive - Content-Length: - - '2711' - Content-Type: - - application/json - If-Match: - - '{''IF-MATCH'': ''AAAADGgmfys=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODgxNWI5ZGMtOTA4Yi00ZWMyLWE1ODYtOTRmYmY0ZWNhMDMyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmfys=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[{"name":"route1","source":"DeviceJobLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"status":"Pending"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGJkMGY0MDMtMjE1Mi00YTJhLTk4MGQtZWI5OWI0ZDkzZWE0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '5212' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:39:50 GMT + - Tue, 18 Oct 2022 21:16:03 GMT expires: - '-1' pragma: @@ -9141,13 +13664,15 @@ 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-resource-requests: - - '4999' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -9162,9 +13687,9 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGJkMGY0MDMtMjE1Mi00YTJhLTk4MGQtZWI5OWI0ZDkzZWE0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODgxNWI5ZGMtOTA4Yi00ZWMyLWE1ODYtOTRmYmY0ZWNhMDMyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9176,7 +13701,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:40:20 GMT + - Tue, 18 Oct 2022 21:16:33 GMT expires: - '-1' pragma: @@ -9208,22 +13733,22 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmgeY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceJobLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+B4c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceJobLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3337' + - '3360' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:40:20 GMT + - Tue, 18 Oct 2022 21:16:34 GMT expires: - '-1' pragma: @@ -9255,7 +13780,7 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -9267,7 +13792,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:40:25 GMT + - Tue, 18 Oct 2022 21:16:34 GMT expires: - '-1' pragma: @@ -9297,9 +13822,9 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -9312,7 +13837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:40:26 GMT + - Tue, 18 Oct 2022 21:16:35 GMT expires: - '-1' pragma: @@ -9346,22 +13871,22 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmgeY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceJobLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+B4c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceJobLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3337' + - '3360' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:40:28 GMT + - Tue, 18 Oct 2022 21:16:36 GMT expires: - '-1' pragma: @@ -9380,24 +13905,24 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmgeY=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+B4c=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "c9015073-afaf-40f4-81c5-fb0d8ba44763", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [{"name": - "route1", "source": "deviceconnectionstateevents", "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "routes": [{"name": "route1", "source": "deviceconnectionstateevents", + "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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -9414,36 +13939,36 @@ interactions: Connection: - keep-alive Content-Length: - - '2714' + - '2744' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmgeY=''}' + - '{''IF-MATCH'': ''AAAADHO+B4c=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmgeY=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[{"name":"route1","source":"DeviceConnectionStateEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+B4c=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWZmYTNhNmQtMDZmZC00Yzg0LWFmMDctNDY5YTZjNTVlMDU4O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTdlYTJiZTMtODA3OS00MTViLThmYjktNDIyMmJjYzBmNzhkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '5215' + - '3475' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:40:37 GMT + - Tue, 18 Oct 2022 21:16:39 GMT expires: - '-1' pragma: @@ -9473,9 +13998,55 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTdlYTJiZTMtODA3OS00MTViLThmYjktNDIyMmJjYzBmNzhkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:16:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub route update + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n -s + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWZmYTNhNmQtMDZmZC00Yzg0LWFmMDctNDY5YTZjNTVlMDU4O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTdlYTJiZTMtODA3OS00MTViLThmYjktNDIyMmJjYzBmNzhkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9487,7 +14058,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:41:08 GMT + - Tue, 18 Oct 2022 21:17:10 GMT expires: - '-1' pragma: @@ -9519,22 +14090,22 @@ interactions: ParameterSetName: - --hub-name -g -n -s User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmg9A=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceConnectionStateEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Cnk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceConnectionStateEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3340' + - '3363' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:41:08 GMT + - Tue, 18 Oct 2022 21:17:11 GMT expires: - '-1' pragma: @@ -9566,7 +14137,7 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -9578,7 +14149,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:41:12 GMT + - Tue, 18 Oct 2022 21:17:11 GMT expires: - '-1' pragma: @@ -9608,9 +14179,9 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -9623,7 +14194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:41:14 GMT + - Tue, 18 Oct 2022 21:17:12 GMT expires: - '-1' pragma: @@ -9639,7 +14210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -9657,22 +14228,22 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmg9A=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}]},"routes":[{"name":"route1","source":"DeviceConnectionStateEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Cnk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceConnectionStateEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3340' + - '3363' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:41:16 GMT + - Tue, 18 Oct 2022 21:17:13 GMT expires: - '-1' pragma: @@ -9691,21 +14262,21 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmg9A=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+Cnk=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "c9015073-afaf-40f4-81c5-fb0d8ba44763", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006", - "name": "Event1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], - "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": @@ -9723,36 +14294,36 @@ interactions: Connection: - keep-alive Content-Length: - - '2586' + - '2616' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmg9A=''}' + - '{''IF-MATCH'': ''AAAADHO+Cnk=''}' ParameterSetName: - --hub-name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmg9A=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Cnk=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGVhZGRlY2MtNmJjZC00ZDAwLWI2MjItYWYwYzZkYzkxOWNjO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjMxNDRlMWEtMGJiMi00NzcxLTlhODMtOGZjNzg1ZTY3OGIxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '5096' + - '3475' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:41:21 GMT + - Tue, 18 Oct 2022 21:17:16 GMT expires: - '-1' pragma: @@ -9764,7 +14335,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -9782,9 +14353,55 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjMxNDRlMWEtMGJiMi00NzcxLTlhODMtOGZjNzg1ZTY3OGIxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:17: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub route delete + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGVhZGRlY2MtNmJjZC00ZDAwLWI2MjItYWYwYzZkYzkxOWNjO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjMxNDRlMWEtMGJiMi00NzcxLTlhODMtOGZjNzg1ZTY3OGIxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -9796,7 +14413,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:41:52 GMT + - Tue, 18 Oct 2022 21:17:46 GMT expires: - '-1' pragma: @@ -9828,22 +14445,22 @@ interactions: ParameterSetName: - --hub-name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmhYU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+DXQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3221' + - '3244' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:41:53 GMT + - Tue, 18 Oct 2022 21:17:47 GMT expires: - '-1' pragma: @@ -9875,7 +14492,7 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -9887,7 +14504,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:41:58 GMT + - Tue, 18 Oct 2022 21:17:48 GMT expires: - '-1' pragma: @@ -9917,9 +14534,9 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -9932,7 +14549,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:41:59 GMT + - Tue, 18 Oct 2022 21:17:49 GMT expires: - '-1' pragma: @@ -9948,7 +14565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -9966,22 +14583,22 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmhYU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1a62nzjy.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"c9015073-afaf-40f4-81c5-fb0d8ba44763","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+DXQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '3221' + - '3244' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:42:01 GMT + - Tue, 18 Oct 2022 21:17:49 GMT expires: - '-1' pragma: @@ -10000,18 +14617,18 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmhYU=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+DXQ=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": - [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], - "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": @@ -10029,28 +14646,28 @@ interactions: Connection: - keep-alive Content-Length: - - '2220' + - '2250' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmhYU=''}' + - '{''IF-MATCH'': ''AAAADHO+DXQ=''}' ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmhYU=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+DXQ=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDA3MDEyYWEtY2MxNi00OGQ1LWE4NGUtOTM4ZmIwNTg2ZGM0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2NlNDRmZDMtY2E0MS00NmEwLTgzZDUtYjBjZjE0M2M5MzA3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -10058,7 +14675,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:42:08 GMT + - Tue, 18 Oct 2022 21:17:53 GMT expires: - '-1' pragma: @@ -10088,9 +14705,55 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2NlNDRmZDMtY2E0MS00NmEwLTgzZDUtYjBjZjE0M2M5MzA3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:17: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub routing-endpoint delete + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDA3MDEyYWEtY2MxNi00OGQ1LWE4NGUtOTM4ZmIwNTg2ZGM0O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2NlNDRmZDMtY2E0MS00NmEwLTgzZDUtYjBjZjE0M2M5MzA3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -10102,7 +14765,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:42:39 GMT + - Tue, 18 Oct 2022 21:18:23 GMT expires: - '-1' pragma: @@ -10134,22 +14797,22 @@ interactions: ParameterSetName: - --hub-name -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmhxY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+EPc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2864' + - '2887' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:42:40 GMT + - Tue, 18 Oct 2022 21:18:24 GMT expires: - '-1' pragma: @@ -10181,13 +14844,13 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?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-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmhxY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":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-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+EPc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":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 @@ -10196,7 +14859,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:42:47 GMT + - Tue, 18 Oct 2022 21:18:25 GMT expires: - '-1' pragma: @@ -10228,7 +14891,7 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -10240,7 +14903,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:42:50 GMT + - Tue, 18 Oct 2022 21:18:25 GMT expires: - '-1' pragma: @@ -10270,9 +14933,9 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -10285,7 +14948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:42:52 GMT + - Tue, 18 Oct 2022 21:18:26 GMT expires: - '-1' pragma: @@ -10319,22 +14982,22 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmhxY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+EPc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2864' + - '2887' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:42:54 GMT + - Tue, 18 Oct 2022 21:18:27 GMT expires: - '-1' pragma: @@ -10353,20 +15016,21 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmhxY=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+EPc=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": - [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], - "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": [{"key": - "key", "value": "value", "endpointNames": ["events", "fake_endpoint"]}]}, "storageEndpoints": - {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": + [{"key": "key", "value": "value", "endpointNames": ["events", "fake_endpoint"]}]}, + "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": + "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -10383,23 +15047,23 @@ interactions: Connection: - keep-alive Content-Length: - - '2317' + - '2347' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmhxY=''}' + - '{''IF-MATCH'': ''AAAADHO+EPc=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: 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: - caa6ab59-5767-43c6-9993-78e13220623d, timestamp: 2022-05-11 06:42:58Z, errorcode: + 892fe0fc-1ae5-43c2-b625-21a6bd466d81, timestamp: 2022-10-18 21:18:30Z, errorcode: IH400131."}' headers: cache-control: @@ -10409,7 +15073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:42:58 GMT + - Tue, 18 Oct 2022 21:18:29 GMT expires: - '-1' pragma: @@ -10439,7 +15103,7 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -10451,7 +15115,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:43:03 GMT + - Tue, 18 Oct 2022 21:18:29 GMT expires: - '-1' pragma: @@ -10481,9 +15145,9 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -10496,7 +15160,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:43:05 GMT + - Tue, 18 Oct 2022 21:18:31 GMT expires: - '-1' pragma: @@ -10530,22 +15194,22 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmhxY=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+EPc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2864' + - '2887' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:43:06 GMT + - Tue, 18 Oct 2022 21:18:32 GMT expires: - '-1' pragma: @@ -10564,19 +15228,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmhxY=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+EPc=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": - [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], - "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": [{"key": - "key", "value": "value", "endpointNames": ["events"]}]}, "storageEndpoints": + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": + [{"key": "key", "value": "value", "endpointNames": ["events"]}]}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": @@ -10594,28 +15258,28 @@ interactions: Connection: - keep-alive Content-Length: - - '2300' + - '2330' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmhxY=''}' + - '{''IF-MATCH'': ''AAAADHO+EPc=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmhxY=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+EPc=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDBlZjRiYWUtYjAyMS00YTY0LWJhYzYtZGZlZmNiY2I4MTFlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODcwZjFlZGYtM2IwNi00MGEzLWIxMDctYjU1MTQxMzA5ZmRiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -10623,7 +15287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:43:11 GMT + - Tue, 18 Oct 2022 21:18:36 GMT expires: - '-1' pragma: @@ -10635,7 +15299,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 201 message: Created @@ -10653,9 +15317,55 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODcwZjFlZGYtM2IwNi00MGEzLWIxMDctYjU1MTQxMzA5ZmRiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:18:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub message-enrichment create + Connection: + - keep-alive + ParameterSetName: + - -n -g --key --value --endpoints + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDBlZjRiYWUtYjAyMS00YTY0LWJhYzYtZGZlZmNiY2I4MTFlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODcwZjFlZGYtM2IwNi00MGEzLWIxMDctYjU1MTQxMzA5ZmRiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -10667,7 +15377,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:43:41 GMT + - Tue, 18 Oct 2022 21:19:06 GMT expires: - '-1' pragma: @@ -10699,22 +15409,22 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmicU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+FW0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2937' + - '2960' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:43:43 GMT + - Tue, 18 Oct 2022 21:19:06 GMT expires: - '-1' pragma: @@ -10746,7 +15456,7 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -10758,7 +15468,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:43:47 GMT + - Tue, 18 Oct 2022 21:19:06 GMT expires: - '-1' pragma: @@ -10788,9 +15498,9 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -10803,7 +15513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:43:49 GMT + - Tue, 18 Oct 2022 21:19:08 GMT expires: - '-1' pragma: @@ -10819,7 +15529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -10837,22 +15547,22 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmicU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+FW0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2937' + - '2960' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:43:51 GMT + - Tue, 18 Oct 2022 21:19:09 GMT expires: - '-1' pragma: @@ -10884,7 +15594,7 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -10896,7 +15606,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:43:55 GMT + - Tue, 18 Oct 2022 21:19:09 GMT expires: - '-1' pragma: @@ -10926,9 +15636,9 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -10941,7 +15651,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:43:57 GMT + - Tue, 18 Oct 2022 21:19:09 GMT expires: - '-1' pragma: @@ -10957,7 +15667,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 200 message: OK @@ -10975,22 +15685,22 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmicU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+FW0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2937' + - '2960' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:43:59 GMT + - Tue, 18 Oct 2022 21:19:10 GMT expires: - '-1' pragma: @@ -11009,20 +15719,21 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmicU=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+FW0=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": - [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], - "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": [{"key": - "key", "value": "value", "endpointNames": ["events", "fake_endpoint"]}]}, "storageEndpoints": - {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": + [{"key": "key", "value": "value", "endpointNames": ["events", "fake_endpoint"]}]}, + "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": + "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -11039,23 +15750,23 @@ interactions: Connection: - keep-alive Content-Length: - - '2317' + - '2347' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmicU=''}' + - '{''IF-MATCH'': ''AAAADHO+FW0=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: 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: - 2efdcfd8-a690-446e-aada-6e0d55f239d0, timestamp: 2022-05-11 06:44:04Z, errorcode: + 6284c938-fc7a-4c61-9daf-8a08b9d70250, timestamp: 2022-10-18 21:19:13Z, errorcode: IH400131."}' headers: cache-control: @@ -11065,7 +15776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:44:04 GMT + - Tue, 18 Oct 2022 21:19:12 GMT expires: - '-1' pragma: @@ -11095,7 +15806,7 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -11107,7 +15818,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:44:08 GMT + - Tue, 18 Oct 2022 21:19:13 GMT expires: - '-1' pragma: @@ -11137,9 +15848,9 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -11152,7 +15863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:44:10 GMT + - Tue, 18 Oct 2022 21:19:13 GMT expires: - '-1' pragma: @@ -11186,22 +15897,22 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmicU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+FW0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2937' + - '2960' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:44:12 GMT + - Tue, 18 Oct 2022 21:19:14 GMT expires: - '-1' pragma: @@ -11220,19 +15931,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmicU=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+FW0=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": - [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], - "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": [{"key": - "key", "value": "value", "endpointNames": ["events"]}]}, "storageEndpoints": + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": + [{"key": "key", "value": "value", "endpointNames": ["events"]}]}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": @@ -11242,44 +15953,88 @@ interactions: "sku": {"name": "S1", "capacity": 1}, "identity": {"type": "None"}}' headers: Accept: - - application/json + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub message-enrichment update + Connection: + - keep-alive + Content-Length: + - '2330' + Content-Type: + - application/json + If-Match: + - '{''IF-MATCH'': ''AAAADHO+FW0=''}' + ParameterSetName: + - -n -g --key --value --endpoints + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+FW0=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGE0NDJlNDItODg3NS00YjAwLTgzZTktYTI4MGZhYTE5OTQzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + cache-control: + - no-cache + content-length: + - '4777' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:19:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '4999' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - iot hub message-enrichment update Connection: - keep-alive - Content-Length: - - '2300' - Content-Type: - - application/json - If-Match: - - '{''IF-MATCH'': ''AAAADGgmicU=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGE0NDJlNDItODg3NS00YjAwLTgzZTktYTI4MGZhYTE5OTQzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmicU=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"status":"Pending"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTQzMzUxOGYtODA1OS00NzNhLWFlMDEtNTBjMTA5YmFlNGY4O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '4777' + - '20' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:44:17 GMT + - Tue, 18 Oct 2022 21:19:18 GMT expires: - '-1' pragma: @@ -11288,13 +16043,15 @@ 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-resource-requests: - - '4999' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -11309,9 +16066,9 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTQzMzUxOGYtODA1OS00NzNhLWFlMDEtNTBjMTA5YmFlNGY4O3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGE0NDJlNDItODg3NS00YjAwLTgzZTktYTI4MGZhYTE5OTQzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -11323,7 +16080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:44:49 GMT + - Tue, 18 Oct 2022 21:19:49 GMT expires: - '-1' pragma: @@ -11355,22 +16112,22 @@ interactions: ParameterSetName: - -n -g --key --value --endpoints User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmjU8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GD0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2937' + - '2960' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:44:49 GMT + - Tue, 18 Oct 2022 21:19:49 GMT expires: - '-1' pragma: @@ -11402,7 +16159,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -11414,7 +16171,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:44:53 GMT + - Tue, 18 Oct 2022 21:19:50 GMT expires: - '-1' pragma: @@ -11444,9 +16201,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -11459,7 +16216,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:44:55 GMT + - Tue, 18 Oct 2022 21:19:50 GMT expires: - '-1' pragma: @@ -11475,7 +16232,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -11493,22 +16250,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmjU8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GD0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2937' + - '2960' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:44:57 GMT + - Tue, 18 Oct 2022 21:19:51 GMT expires: - '-1' pragma: @@ -11540,7 +16297,7 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -11552,7 +16309,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:45:01 GMT + - Tue, 18 Oct 2022 21:19:51 GMT expires: - '-1' pragma: @@ -11582,9 +16339,9 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -11597,7 +16354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:45:02 GMT + - Tue, 18 Oct 2022 21:19:52 GMT expires: - '-1' pragma: @@ -11631,22 +16388,22 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmjU8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GD0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2937' + - '2960' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:45:04 GMT + - Tue, 18 Oct 2022 21:19:53 GMT expires: - '-1' pragma: @@ -11678,7 +16435,7 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -11690,7 +16447,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:45:08 GMT + - Tue, 18 Oct 2022 21:19:53 GMT expires: - '-1' pragma: @@ -11720,9 +16477,9 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -11735,7 +16492,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:45:10 GMT + - Tue, 18 Oct 2022 21:19:53 GMT expires: - '-1' pragma: @@ -11769,22 +16526,22 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmjU8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GD0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2937' + - '2960' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:45:11 GMT + - Tue, 18 Oct 2022 21:19:54 GMT expires: - '-1' pragma: @@ -11803,19 +16560,19 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADGgmjU8=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+GD0=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": - [{"id": "2677d6c7-3b4b-43d9-90a5-13b8aaa653fa", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", - "name": "Storage1", "subscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": - 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}]}, "routes": [], - "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", "condition": - "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": []}, - "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": + 100, "maxChunkSizeInBytes": 157286400, "encoding": "avro"}], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}, "enrichments": + []}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT3H", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": @@ -11833,28 +16590,28 @@ interactions: Connection: - keep-alive Content-Length: - - '2239' + - '2269' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGgmjU8=''}' + - '{''IF-MATCH'': ''AAAADHO+GD0=''}' ParameterSetName: - -n -g --key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmjU8=","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-11gwix2m-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-94eb3443-e14e-4868-95ea-d772ae459518-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-56f46a98-671d-4b03-a0dd-9675a3e31254-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, - 11 May 2022 06:24:24 GMT","ModifiedTime":"Wed, 11 May 2022 06:24:24 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, - 11 May 2022 06:32:19 GMT","ModifiedTime":"Wed, 11 May 2022 06:32:19 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GD0=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, + 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, + 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDliOGJjYjktNWVkNi00ODIwLTkzZTctYjQ2MjQ4MDA5MTgyO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjNhZTcwMTMtYjM0My00NGY4LTgzMGMtZDE2ZWEwOGVhNGM4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -11862,7 +16619,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:45:18 GMT + - Tue, 18 Oct 2022 21:19:58 GMT expires: - '-1' pragma: @@ -11892,9 +16649,55 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjNhZTcwMTMtYjM0My00NGY4LTgzMGMtZDE2ZWEwOGVhNGM4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:19: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 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub message-enrichment delete + Connection: + - keep-alive + ParameterSetName: + - -n -g --key + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDliOGJjYjktNWVkNi00ODIwLTkzZTctYjQ2MjQ4MDA5MTgyO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjNhZTcwMTMtYjM0My00NGY4LTgzMGMtZDE2ZWEwOGVhNGM4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -11906,7 +16709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:45:49 GMT + - Tue, 18 Oct 2022 21:20:29 GMT expires: - '-1' pragma: @@ -11938,22 +16741,22 @@ interactions: ParameterSetName: - -n -g --key User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmkCw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GrE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2881' + - '2904' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:45:50 GMT + - Tue, 18 Oct 2022 21:20:30 GMT expires: - '-1' pragma: @@ -11985,7 +16788,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -11997,7 +16800,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:45:54 GMT + - Tue, 18 Oct 2022 21:20:30 GMT expires: - '-1' pragma: @@ -12027,9 +16830,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -12042,7 +16845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:45:54 GMT + - Tue, 18 Oct 2022 21:20:31 GMT expires: - '-1' pragma: @@ -12076,22 +16879,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmkCw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-0870964696.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GrE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2881' + - '2904' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:45:56 GMT + - Tue, 18 Oct 2022 21:20:32 GMT expires: - '-1' pragma: @@ -12127,15 +16930,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/failover?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/failover?api-version=2022-04-30-preview response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -12143,11 +16946,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:45:58 GMT + - Tue, 18 Oct 2022 21:20:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other pragma: - no-cache server: @@ -12175,9 +16978,101 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:20:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub manual-failover + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:21: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub manual-failover + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12189,7 +17084,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:46:13 GMT + - Tue, 18 Oct 2022 21:21:34 GMT expires: - '-1' pragma: @@ -12221,9 +17116,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12235,7 +17130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:46:44 GMT + - Tue, 18 Oct 2022 21:22:04 GMT expires: - '-1' pragma: @@ -12267,9 +17162,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12281,7 +17176,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:47:14 GMT + - Tue, 18 Oct 2022 21:22:35 GMT expires: - '-1' pragma: @@ -12313,9 +17208,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12327,7 +17222,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:47:44 GMT + - Tue, 18 Oct 2022 21:23:04 GMT expires: - '-1' pragma: @@ -12359,9 +17254,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12373,7 +17268,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:48:15 GMT + - Tue, 18 Oct 2022 21:23:35 GMT expires: - '-1' pragma: @@ -12405,9 +17300,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12419,7 +17314,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:48:46 GMT + - Tue, 18 Oct 2022 21:24:05 GMT expires: - '-1' pragma: @@ -12451,9 +17346,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12465,7 +17360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:49:16 GMT + - Tue, 18 Oct 2022 21:24:35 GMT expires: - '-1' pragma: @@ -12497,9 +17392,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12511,7 +17406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:49:46 GMT + - Tue, 18 Oct 2022 21:25:05 GMT expires: - '-1' pragma: @@ -12543,9 +17438,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12557,7 +17452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:50:17 GMT + - Tue, 18 Oct 2022 21:25:36 GMT expires: - '-1' pragma: @@ -12589,9 +17484,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12603,7 +17498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:50:47 GMT + - Tue, 18 Oct 2022 21:26:05 GMT expires: - '-1' pragma: @@ -12635,9 +17530,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12649,7 +17544,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:51:18 GMT + - Tue, 18 Oct 2022 21:26:35 GMT expires: - '-1' pragma: @@ -12681,9 +17576,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12695,7 +17590,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:51:49 GMT + - Tue, 18 Oct 2022 21:27:06 GMT expires: - '-1' pragma: @@ -12727,9 +17622,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12741,7 +17636,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:52:19 GMT + - Tue, 18 Oct 2022 21:27:35 GMT expires: - '-1' pragma: @@ -12773,9 +17668,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12787,7 +17682,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:52:50 GMT + - Tue, 18 Oct 2022 21:28:06 GMT expires: - '-1' pragma: @@ -12819,9 +17714,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12833,7 +17728,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:53:20 GMT + - Tue, 18 Oct 2022 21:28:36 GMT expires: - '-1' pragma: @@ -12865,9 +17760,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12879,7 +17774,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:53:50 GMT + - Tue, 18 Oct 2022 21:29:06 GMT expires: - '-1' pragma: @@ -12911,9 +17806,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12925,7 +17820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:54:20 GMT + - Tue, 18 Oct 2022 21:29:36 GMT expires: - '-1' pragma: @@ -12957,9 +17852,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -12971,7 +17866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:54:51 GMT + - Tue, 18 Oct 2022 21:30:06 GMT expires: - '-1' pragma: @@ -13003,9 +17898,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -13017,7 +17912,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:55:21 GMT + - Tue, 18 Oct 2022 21:30:37 GMT expires: - '-1' pragma: @@ -13049,9 +17944,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other response: body: string: '' @@ -13061,11 +17956,11 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:55:22 GMT + - Tue, 18 Oct 2022 21:30:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMGE2NzY0ZjctNmRjZC00MTRmLTgxYmQtNTNhZWU3MmVjMTVlO3JlZ2lvbj13ZXN0dXMy?api-version=2021-07-02&operationSource=other + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other pragma: - no-cache server: @@ -13091,7 +17986,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: @@ -13103,7 +17998,7 @@ interactions: content-length: - '0' date: - - Wed, 11 May 2022 06:55:22 GMT + - Tue, 18 Oct 2022 21:30:37 GMT expires: - '-1' pragma: @@ -13133,9 +18028,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkNameAvailability?api-version=2022-04-30-preview response: body: string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"IotHub name @@ -13148,7 +18043,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:55:24 GMT + - Tue, 18 Oct 2022 21:30:38 GMT expires: - '-1' pragma: @@ -13182,22 +18077,22 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmr4A=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-da858de3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Myw=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-7e8e2e0f44.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' headers: cache-control: - no-cache content-length: - - '2881' + - '2904' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:55:25 GMT + - Tue, 18 Oct 2022 21:30:39 GMT expires: - '-1' pragma: @@ -13229,39 +18124,204 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmr4A=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11gwix2m","endpoint":"sb://iothub-ns-iot-hub-fo-19044980-da858de3d1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"2677d6c7-3b4b-43d9-90a5-13b8aaa653fa","subscriptionId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:22:57.5166667Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Myw=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-7e8e2e0f44.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-da74b9f45823435394c13ceab3f49960","name":"test-hub-da74b9f45823435394c13ceab3f49960","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"81 + Test IoT Hub - config, core and jobs Python38 181dabdb-4055-58ff-c7bd-8011e0b92875","test_hub_monitor_events":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+JwE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-da74b9f45823435394c13ceab3f49960.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-da74b9f458234353","endpoint":"sb://iothub-ns-test-hub-d-22328069-ee89558e4f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:17:35.0766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-7cfc5a5b357e4c3aa9533857b5b65ba7","name":"test-hub-7cfc5a5b357e4c3aa9533857b5b65ba7","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"81 + Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_hub_monitor_events":"2"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+L2k=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-7cfc5a5b357e4c3aa9533857b5b65ba7.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-7cfc5a5b357e4c3a","endpoint":"sb://iothub-ns-test-hub-7-22328074-2f4d97aed3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:17:41.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-6033c5207f5d48918f5f7d0f98076fca","name":"test-hub-6033c5207f5d48918f5f7d0f98076fca","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_configurations":"1","pipeline_id":"81 + Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_edge_deployments":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+Lss=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-6033c5207f5d48918f5f7d0f98076fca.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-6033c5207f5d4891","endpoint":"sb://iothub-ns-test-hub-6-22328075-e504e293fe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:17:41.5166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-813f2161868443f6acb1ae2806ebb566","name":"test-hub-813f2161868443f6acb1ae2806ebb566","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_connection_string_show":"3","pipeline_id":"81 + Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_iothub_generate_sas_token":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+M8A=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-813f2161868443f6acb1ae2806ebb566.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-813f2161868443f6","endpoint":"sb://iothub-ns-test-hub-8-22328076-6708920a84.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:17:41.7066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-dd9f372fe12c48a0936070439cd7d999","name":"test-hub-dd9f372fe12c48a0936070439cd7d999","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"81 + Test IoT Hub - config, core and jobs Python38 181dabdb-4055-58ff-c7bd-8011e0b92875","test_system_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+Lgw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-dd9f372fe12c48a0936070439cd7d999.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-dd9f372fe12c48a0","endpoint":"sb://iothub-ns-test-hub-d-22328083-ec5114bc62.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore0217.blob.core.windows.net/;FileEndpoint=https://hubstore0217.file.core.windows.net/;QueueEndpoint=https://hubstore0217.queue.core.windows.net/;TableEndpoint=https://hubstore0217.table.core.windows.net/;AccountName=hubstore0217;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"52f6009d-fc3d-48e0-909c-287f3ed80fde"},"systemData":{"createdAt":"2022-10-18T21:18:00.7666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0e02c304feb4b7c90c814a3bd4bf132","name":"test-hub-a0e02c304feb4b7c90c814a3bd4bf132","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"81 + Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_system_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+L+4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a0e02c304feb4b7c90c814a3bd4bf132.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a0e02c304feb4b7c","endpoint":"sb://iothub-ns-test-hub-a-22328084-3680f83a6b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore251b.blob.core.windows.net/;FileEndpoint=https://hubstore251b.file.core.windows.net/;QueueEndpoint=https://hubstore251b.queue.core.windows.net/;TableEndpoint=https://hubstore251b.table.core.windows.net/;AccountName=hubstore251b;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5b5aad86-e917-4a94-9502-84abee090e31"},"systemData":{"createdAt":"2022-10-18T21:18:05.33Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-10ce8b6185aa4576b7b829c07d708421","name":"test-hub-10ce8b6185aa4576b7b829c07d708421","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_connection_string_show":"1","pipeline_id":"81 + Test IoT Hub - devices, messaging, modules and state Python38 433f2cac-6c40-527a-504a-b20010ce3960","test_iothub_device_generate_sas_token":"1","test_iothub_device_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+LLo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-10ce8b6185aa4576b7b829c07d708421.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-10ce8b6185aa4576","endpoint":"sb://iothub-ns-test-hub-1-22328085-8e55c15005.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:18.6066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f5f1a0aa96cb4385af1e1a60d05217e2","name":"test-hub-f5f1a0aa96cb4385af1e1a60d05217e2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_scope_on_create":"1","pipeline_id":"81 + Test IoT Hub - devices, messaging, modules and state Python38 433f2cac-6c40-527a-504a-b20010ce3960","test_iothub_edge_device_parent_scope_on_create":"1","test_iothub_nested_edge":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+KgM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-f5f1a0aa96cb4385af1e1a60d05217e2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-f5f1a0aa96cb4385","endpoint":"sb://iothub-ns-test-hub-f-22328086-2bf6e96aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:18.75Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-7aea30ebfa464b11b70ae922705dd324","name":"test-hub-7aea30ebfa464b11b70ae922705dd324","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_module_connection_string_show":"1","pipeline_id":"81 + Test IoT Hub - devices, messaging, modules and state Python38 433f2cac-6c40-527a-504a-b20010ce3960","test_iothub_module_generate_sas_token":"1","test_iothub_module_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+K4k=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-7aea30ebfa464b11b70ae922705dd324.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-7aea30ebfa464b11","endpoint":"sb://iothub-ns-test-hub-7-22328093-9f1c94a127.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:20.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e8e028b4e9eb4973b9dd7a9a8e8f4a5a","name":"test-hub-e8e028b4e9eb4973b9dd7a9a8e8f4a5a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_connection_string_show":"1","pipeline_id":"81 + Test IoT Hub - devices, messaging, modules and state Python37 972448a5-d3b3-5e41-ccf5-40735d33ce04","test_iothub_device_generate_sas_token":"1","test_iothub_device_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+MNI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-e8e028b4e9eb4973b9dd7a9a8e8f4a5a.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-e8e028b4e9eb4973","endpoint":"sb://iothub-ns-test-hub-e-22328094-eaa2ed9e50.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:20.6666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-84e72b52c92849488e6943bff2168d59","name":"test-hub-84e72b52c92849488e6943bff2168d59","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_scope_on_create":"1","pipeline_id":"81 + Test IoT Hub - devices, messaging, modules and state Python37 972448a5-d3b3-5e41-ccf5-40735d33ce04","test_iothub_edge_device_parent_scope_on_create":"1","test_iothub_nested_edge":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+K0s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-84e72b52c92849488e6943bff2168d59.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-84e72b52c9284948","endpoint":"sb://iothub-ns-test-hub-8-22328099-fe9d9ea0a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:21.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-79c146007462405fa9410c1680eb9bf7","name":"test-hub-79c146007462405fa9410c1680eb9bf7","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_module_connection_string_show":"1","pipeline_id":"81 + Test IoT Hub - devices, messaging, modules and state Python37 972448a5-d3b3-5e41-ccf5-40735d33ce04","test_iothub_module_generate_sas_token":"1","test_iothub_module_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+Lq0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-79c146007462405fa9410c1680eb9bf7.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-79c146007462405f","endpoint":"sb://iothub-ns-test-hub-7-22328100-8fb57d452a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:21.6333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-4d939b24ceaa4b","name":"test-hub-4d939b24ceaa4b","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+M3I=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-4d939b24ceaa4b.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-4d939b24ceaa4b","endpoint":"sb://iothub-ns-test-hub-4-22328201-6bd91284a6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep801ca0edbdf14d.blob.core.windows.net/;FileEndpoint=https://testhubdep801ca0edbdf14d.file.core.windows.net/;QueueEndpoint=https://testhubdep801ca0edbdf14d.queue.core.windows.net/;TableEndpoint=https://testhubdep801ca0edbdf14d.table.core.windows.net/;AccountName=testhubdep801ca0edbdf14d;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdba8ce215c1c4e":{"clientId":"f09cf361-031d-4269-a7e9-980a4fdd7036","principalId":"d3fbd85c-9f08-45cd-b91f-a08db8642b53"}},"principalId":"72f86813-b939-4696-80a2-6ae5b4bc02ee"},"systemData":{"createdAt":"2022-10-18T21:28:22.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-7cba711b544043","name":"test-hub-7cba711b544043","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+L14=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep347a55723bb24a.blob.core.windows.net/;FileEndpoint=https://testhubdep347a55723bb24a.file.core.windows.net/;QueueEndpoint=https://testhubdep347a55723bb24a.queue.core.windows.net/;TableEndpoint=https://testhubdep347a55723bb24a.table.core.windows.net/;AccountName=testhubdep347a55723bb24a;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepce3af62147ad48":{"clientId":"3034fa8e-3bad-489b-8a0f-7962511111a1","principalId":"3f3b9b51-25e7-49cc-a782-8dd47bb383da"}},"principalId":"f82a4aa8-a5c4-4c51-9e8e-a8f67dad073c"},"systemData":{"createdAt":"2022-10-18T21:29:02.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f0cad9aa560c43","name":"test-hub-f0cad9aa560c43","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+NUs=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep801ca0edbdf14d.blob.core.windows.net/;FileEndpoint=https://testhubdep801ca0edbdf14d.file.core.windows.net/;QueueEndpoint=https://testhubdep801ca0edbdf14d.queue.core.windows.net/;TableEndpoint=https://testhubdep801ca0edbdf14d.table.core.windows.net/;AccountName=testhubdep801ca0edbdf14d;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdba8ce215c1c4e":{"clientId":"f09cf361-031d-4269-a7e9-980a4fdd7036","principalId":"d3fbd85c-9f08-45cd-b91f-a08db8642b53"}},"principalId":"0578eb73-d0da-40a0-baad-27f8aac9c3ee"},"systemData":{"createdAt":"2022-10-18T21:30:30.1933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '5056' + - '210920' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:55:30 GMT + - Tue, 18 Oct 2022 21:30:48 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -13281,15 +18341,15 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjMzOGZjMmItMTRhOS00ODk2LThmNDktMDc2Y2U0NTY4NzExO3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzZlODdhYjctMTRmYS00ODU2LTk2NGQtMDg2M2Y0NzFjOTk0O3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -13297,11 +18357,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:55:32 GMT + - Tue, 18 Oct 2022 21:30:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjMzOGZjMmItMTRhOS00ODk2LThmNDktMDc2Y2U0NTY4NzExO3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2021-07-02&operationSource=other + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzZlODdhYjctMTRmYS00ODU2LTk2NGQtMDg2M2Y0NzFjOTk0O3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2022-04-30-preview&operationSource=other pragma: - no-cache server: @@ -13329,12 +18389,12 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjMzOGZjMmItMTRhOS00ODk2LThmNDktMDc2Y2U0NTY4NzExO3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzZlODdhYjctMTRmYS00ODU2LTk2NGQtMDg2M2Y0NzFjOTk0O3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"status":"Running"}' + string: '{"status":"Pending"}' headers: cache-control: - no-cache @@ -13343,7 +18403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:55:47 GMT + - Tue, 18 Oct 2022 21:30:51 GMT expires: - '-1' pragma: @@ -13375,9 +18435,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjMzOGZjMmItMTRhOS00ODk2LThmNDktMDc2Y2U0NTY4NzExO3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzZlODdhYjctMTRmYS00ODU2LTk2NGQtMDg2M2Y0NzFjOTk0O3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -13389,7 +18449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:56:17 GMT + - Tue, 18 Oct 2022 21:31:21 GMT expires: - '-1' pragma: @@ -13421,12 +18481,12 @@ interactions: ParameterSetName: - -g -n --edr User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-05-11T06:20:19Z"},"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":"2022-10-18T20:58:43Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -13435,7 +18495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:56:21 GMT + - Tue, 18 Oct 2022 21:31:21 GMT expires: - '-1' pragma: @@ -13474,15 +18534,15 @@ interactions: ParameterSetName: - -g -n --edr User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007?api-version=2022-04-30-preview response: body: string: '{"code":400059,"httpStatusCode":"BadRequest","message":"Requested IoT Hub features ''\"DataResidency\"'' not available in ''westus2'' region. If you contact a support representative please include this correlation identifier: - c020a006-04e3-4a71-b1b8-ffa51e02c2f5, timestamp: 2022-05-11 06:56:28Z, errorcode: + 6a498394-69f5-40d7-a734-8cc849f798d1, timestamp: 2022-10-18 21:31:24Z, errorcode: IH400059."}' headers: cache-control: @@ -13492,7 +18552,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:56:31 GMT + - Tue, 18 Oct 2022 21:31:23 GMT expires: - '-1' pragma: @@ -13504,7 +18564,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4998' + - '4999' status: code: 400 message: Bad Request @@ -13533,15 +18593,15 @@ interactions: ParameterSetName: - -g -n --location --edr User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007","name":"dps-dr000007","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007","name":"dps-dr000007","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfMTY4MTU4ZDktNzUxMC00YmM3LThjOWItN2FkMGMxNTFlZWVhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -13549,7 +18609,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:56:45 GMT + - Tue, 18 Oct 2022 21:31:34 GMT expires: - '-1' pragma: @@ -13561,7 +18621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '4997' + - '4999' status: code: 201 message: Created @@ -13579,12 +18639,12 @@ interactions: ParameterSetName: - -g -n --location --edr User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfMTY4MTU4ZDktNzUxMC00YmM3LThjOWItN2FkMGMxNTFlZWVhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"status":"Running"}' + string: '{"status":"Pending"}' headers: cache-control: - no-cache @@ -13593,7 +18653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:57:16 GMT + - Tue, 18 Oct 2022 21:31:34 GMT expires: - '-1' pragma: @@ -13625,9 +18685,9 @@ interactions: ParameterSetName: - -g -n --location --edr User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfMTY4MTU4ZDktNzUxMC00YmM3LThjOWItN2FkMGMxNTFlZWVhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -13639,7 +18699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:57:46 GMT + - Tue, 18 Oct 2022 21:32:05 GMT expires: - '-1' pragma: @@ -13671,9 +18731,9 @@ interactions: ParameterSetName: - -g -n --location --edr User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfMTY4MTU4ZDktNzUxMC00YmM3LThjOWItN2FkMGMxNTFlZWVhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -13685,7 +18745,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:58:15 GMT + - Tue, 18 Oct 2022 21:32:36 GMT expires: - '-1' pragma: @@ -13717,9 +18777,9 @@ interactions: ParameterSetName: - -g -n --location --edr User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfMTY4MTU4ZDktNzUxMC00YmM3LThjOWItN2FkMGMxNTFlZWVhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -13731,7 +18791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:58:46 GMT + - Tue, 18 Oct 2022 21:33:06 GMT expires: - '-1' pragma: @@ -13763,9 +18823,9 @@ interactions: ParameterSetName: - -g -n --location --edr User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfMTY4MTU4ZDktNzUxMC00YmM3LThjOWItN2FkMGMxNTFlZWVhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -13777,7 +18837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:59:16 GMT + - Tue, 18 Oct 2022 21:33:36 GMT expires: - '-1' pragma: @@ -13809,9 +18869,9 @@ interactions: ParameterSetName: - -g -n --location --edr User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfMTY4MTU4ZDktNzUxMC00YmM3LThjOWItN2FkMGMxNTFlZWVhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -13823,7 +18883,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 06:59:46 GMT + - Tue, 18 Oct 2022 21:34:06 GMT expires: - '-1' pragma: @@ -13855,9 +18915,9 @@ interactions: ParameterSetName: - -g -n --location --edr User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfMTY4MTU4ZDktNzUxMC00YmM3LThjOWItN2FkMGMxNTFlZWVhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -13869,7 +18929,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 07:00:17 GMT + - Tue, 18 Oct 2022 21:34:37 GMT expires: - '-1' pragma: @@ -13901,22 +18961,22 @@ interactions: ParameterSetName: - -g -n --location --edr User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007","name":"dps-dr000007","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmvNA=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dps-dr000007.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dps-dr000007","endpoint":"sb://iothub-ns-dps-drmecw-19045491-24b7db5598.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:56:43.43Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007","name":"dps-dr000007","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Rqg=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dps-dr000007.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dps-dr000007","endpoint":"sb://iothub-ns-dps-drocdl-22328256-bfe5c1883d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:31:33.2433333Z"}}' headers: cache-control: - no-cache content-length: - - '1608' + - '1641' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 07:00:19 GMT + - Tue, 18 Oct 2022 21:34:39 GMT expires: - '-1' pragma: @@ -13948,25 +19008,179 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007","name":"dps-dr000007","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"clitest.rg000001","etag":"AAAADGgmvNA=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dps-dr000007.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dps-dr000007","endpoint":"sb://iothub-ns-dps-drmecw-19045491-24b7db5598.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-11T06:56:43.43Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.Devices/IotHubs/iothub-yyc","name":"iothub-yyc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"0b1f6471-1bf0-4dda-aec3-cb9272f09590","resourcegroup":"python-sdk-test","etag":"AAAADFwIuDE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iothub-yyc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothub-yyc","endpoint":"sb://iothub-ns-iothub-yyc-15359990-a6a965f2cb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-10-14T05:25:45.29Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-da74b9f45823435394c13ceab3f49960","name":"test-hub-da74b9f45823435394c13ceab3f49960","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"81 + Test IoT Hub - config, core and jobs Python38 181dabdb-4055-58ff-c7bd-8011e0b92875","test_hub_monitor_events":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+JwE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-da74b9f45823435394c13ceab3f49960.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-da74b9f458234353","endpoint":"sb://iothub-ns-test-hub-d-22328069-ee89558e4f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:17:35.0766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-7cfc5a5b357e4c3aa9533857b5b65ba7","name":"test-hub-7cfc5a5b357e4c3aa9533857b5b65ba7","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"81 + Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_hub_monitor_events":"3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+PZE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-7cfc5a5b357e4c3aa9533857b5b65ba7.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-7cfc5a5b357e4c3a","endpoint":"sb://iothub-ns-test-hub-7-22328074-2f4d97aed3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:17:41.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-dd9f372fe12c48a0936070439cd7d999","name":"test-hub-dd9f372fe12c48a0936070439cd7d999","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"81 + Test IoT Hub - config, core and jobs Python38 181dabdb-4055-58ff-c7bd-8011e0b92875","test_system_identity_storage":"1","test_user_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+RsI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-dd9f372fe12c48a0936070439cd7d999.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-dd9f372fe12c48a0","endpoint":"sb://iothub-ns-test-hub-d-22328083-ec5114bc62.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore0217.blob.core.windows.net/;FileEndpoint=https://hubstore0217.file.core.windows.net/;QueueEndpoint=https://hubstore0217.queue.core.windows.net/;TableEndpoint=https://hubstore0217.table.core.windows.net/;AccountName=hubstore0217;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/378cd6b9ce6e4e7898be10f2e6b58312":{"clientId":"f3113812-20ff-464f-bfd6-a075ac90b83c","principalId":"026fe55c-7ef4-4e5d-ad8b-f3f6053e8de4"}}},"systemData":{"createdAt":"2022-10-18T21:18:00.7666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0e02c304feb4b7c90c814a3bd4bf132","name":"test-hub-a0e02c304feb4b7c90c814a3bd4bf132","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"81 + Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_system_identity_storage":"1","test_user_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+SZw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"test-hub-a0e02c304feb4b7c90c814a3bd4bf132.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a0e02c304feb4b7c","endpoint":"sb://iothub-ns-test-hub-a-22328084-3680f83a6b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore251b.blob.core.windows.net/;FileEndpoint=https://hubstore251b.file.core.windows.net/;QueueEndpoint=https://hubstore251b.queue.core.windows.net/;TableEndpoint=https://hubstore251b.table.core.windows.net/;AccountName=hubstore251b;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fc67b0771e064de38101ace35f217f19":{"clientId":"e3d70b91-6da8-45c4-b493-abfe13e46e33","principalId":"f19c57cd-8afd-43d2-a3a6-8ac1c71e85b6"}}},"systemData":{"createdAt":"2022-10-18T21:18:05.33Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-10ce8b6185aa4576b7b829c07d708421","name":"test-hub-10ce8b6185aa4576b7b829c07d708421","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_connection_string_show":"1","pipeline_id":"81 + Test IoT Hub - devices, messaging, modules and state Python38 433f2cac-6c40-527a-504a-b20010ce3960","test_iothub_device_generate_sas_token":"1","test_iothub_device_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+LLo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-10ce8b6185aa4576b7b829c07d708421.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-10ce8b6185aa4576","endpoint":"sb://iothub-ns-test-hub-1-22328085-8e55c15005.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:18.6066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f5f1a0aa96cb4385af1e1a60d05217e2","name":"test-hub-f5f1a0aa96cb4385af1e1a60d05217e2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_scope_on_create":"1","pipeline_id":"81 + Test IoT Hub - devices, messaging, modules and state Python38 433f2cac-6c40-527a-504a-b20010ce3960","test_iothub_edge_device_parent_scope_on_create":"1","test_iothub_nested_edge":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+KgM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-f5f1a0aa96cb4385af1e1a60d05217e2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-f5f1a0aa96cb4385","endpoint":"sb://iothub-ns-test-hub-f-22328086-2bf6e96aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:18.75Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e8e028b4e9eb4973b9dd7a9a8e8f4a5a","name":"test-hub-e8e028b4e9eb4973b9dd7a9a8e8f4a5a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_connection_string_show":"1","pipeline_id":"81 + Test IoT Hub - devices, messaging, modules and state Python37 972448a5-d3b3-5e41-ccf5-40735d33ce04","test_iothub_device_generate_sas_token":"1","test_iothub_device_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+MNI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-e8e028b4e9eb4973b9dd7a9a8e8f4a5a.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-e8e028b4e9eb4973","endpoint":"sb://iothub-ns-test-hub-e-22328094-eaa2ed9e50.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:20.6666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-84e72b52c92849488e6943bff2168d59","name":"test-hub-84e72b52c92849488e6943bff2168d59","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_scope_on_create":"1","pipeline_id":"81 + Test IoT Hub - devices, messaging, modules and state Python37 972448a5-d3b3-5e41-ccf5-40735d33ce04","test_iothub_edge_device_parent_scope_on_create":"1","test_iothub_nested_edge":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+K0s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-84e72b52c92849488e6943bff2168d59.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-84e72b52c9284948","endpoint":"sb://iothub-ns-test-hub-8-22328099-fe9d9ea0a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:21.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-79c146007462405fa9410c1680eb9bf7","name":"test-hub-79c146007462405fa9410c1680eb9bf7","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_module_connection_string_show":"1","pipeline_id":"81 + Test IoT Hub - devices, messaging, modules and state Python37 972448a5-d3b3-5e41-ccf5-40735d33ce04","test_iothub_module_generate_sas_token":"1","test_iothub_module_identity":"1","test_iothub_module_renew_key":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+SPM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-79c146007462405fa9410c1680eb9bf7.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-79c146007462405f","endpoint":"sb://iothub-ns-test-hub-7-22328100-8fb57d452a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:21.6333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-4d939b24ceaa4b","name":"test-hub-4d939b24ceaa4b","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+M3I=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-4d939b24ceaa4b.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-4d939b24ceaa4b","endpoint":"sb://iothub-ns-test-hub-4-22328201-6bd91284a6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep801ca0edbdf14d.blob.core.windows.net/;FileEndpoint=https://testhubdep801ca0edbdf14d.file.core.windows.net/;QueueEndpoint=https://testhubdep801ca0edbdf14d.queue.core.windows.net/;TableEndpoint=https://testhubdep801ca0edbdf14d.table.core.windows.net/;AccountName=testhubdep801ca0edbdf14d;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdba8ce215c1c4e":{"clientId":"f09cf361-031d-4269-a7e9-980a4fdd7036","principalId":"d3fbd85c-9f08-45cd-b91f-a08db8642b53"}},"principalId":"72f86813-b939-4696-80a2-6ae5b4bc02ee"},"systemData":{"createdAt":"2022-10-18T21:28:22.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-7cba711b544043","name":"test-hub-7cba711b544043","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+OHI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-7cba711b544043.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-7cba711b544043","endpoint":"sb://iothub-ns-test-hub-7-22328215-f1faa3789d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep347a55723bb24a.blob.core.windows.net/;FileEndpoint=https://testhubdep347a55723bb24a.file.core.windows.net/;QueueEndpoint=https://testhubdep347a55723bb24a.queue.core.windows.net/;TableEndpoint=https://testhubdep347a55723bb24a.table.core.windows.net/;AccountName=testhubdep347a55723bb24a;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepce3af62147ad48":{"clientId":"3034fa8e-3bad-489b-8a0f-7962511111a1","principalId":"3f3b9b51-25e7-49cc-a782-8dd47bb383da"}},"principalId":"f82a4aa8-a5c4-4c51-9e8e-a8f67dad073c"},"systemData":{"createdAt":"2022-10-18T21:29:02.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f0cad9aa560c43","name":"test-hub-f0cad9aa560c43","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+QMI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-f0cad9aa560c43.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-f0cad9aa560c43","endpoint":"sb://iothub-ns-test-hub-f-22328243-22fd753963.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep801ca0edbdf14d.blob.core.windows.net/;FileEndpoint=https://testhubdep801ca0edbdf14d.file.core.windows.net/;QueueEndpoint=https://testhubdep801ca0edbdf14d.queue.core.windows.net/;TableEndpoint=https://testhubdep801ca0edbdf14d.table.core.windows.net/;AccountName=testhubdep801ca0edbdf14d;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdba8ce215c1c4e":{"clientId":"f09cf361-031d-4269-a7e9-980a4fdd7036","principalId":"d3fbd85c-9f08-45cd-b91f-a08db8642b53"}},"principalId":"0578eb73-d0da-40a0-baad-27f8aac9c3ee"},"systemData":{"createdAt":"2022-10-18T21:30:30.1933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-6fcec9fa16f94c","name":"test-hub-6fcec9fa16f94c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+RUw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-6fcec9fa16f94c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-6fcec9fa16f94c","endpoint":"sb://iothub-ns-test-hub-6-22328257-b13331ad85.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep347a55723bb24a.blob.core.windows.net/;FileEndpoint=https://testhubdep347a55723bb24a.file.core.windows.net/;QueueEndpoint=https://testhubdep347a55723bb24a.queue.core.windows.net/;TableEndpoint=https://testhubdep347a55723bb24a.table.core.windows.net/;AccountName=testhubdep347a55723bb24a;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepce3af62147ad48":{"clientId":"3034fa8e-3bad-489b-8a0f-7962511111a1","principalId":"3f3b9b51-25e7-49cc-a782-8dd47bb383da"}},"principalId":"38b3b3e2-1b09-4b50-934e-7b20208cf5a8"},"systemData":{"createdAt":"2022-10-18T21:31:41.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007","name":"dps-dr000007","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Rqg=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dps-dr000007.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dps-dr000007","endpoint":"sb://iothub-ns-dps-drocdl-22328256-bfe5c1883d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:31:33.2433333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '3783' + - '207275' content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 07:00:23 GMT + - Tue, 18 Oct 2022 21:34:47 GMT expires: - '-1' pragma: @@ -13980,6 +19194,14 @@ interactions: x-ms-original-request-ids: - '' - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' status: code: 200 message: OK @@ -13999,15 +19221,15 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007?api-version=2022-04-30-preview response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfNTVmZDFiZDItYzY4NS00NTg5LTgyYWYtZDRhYjkyOWFhOGUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfZDBmMWRhMDMtZGJjOC00NjNjLWExNTUtNGFlMDIyODQ5ZGZkO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -14015,11 +19237,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 07:00:25 GMT + - Tue, 18 Oct 2022 21:34:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfNTVmZDFiZDItYzY4NS00NTg5LTgyYWYtZDRhYjkyOWFhOGUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2021-07-02&operationSource=other + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfZDBmMWRhMDMtZGJjOC00NjNjLWExNTUtNGFlMDIyODQ5ZGZkO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other pragma: - no-cache server: @@ -14047,9 +19269,55 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfZDBmMWRhMDMtZGJjOC00NjNjLWExNTUtNGFlMDIyODQ5ZGZkO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 18 Oct 2022 21:34: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub delete + Connection: + - keep-alive + ParameterSetName: + - -n + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfNTVmZDFiZDItYzY4NS00NTg5LTgyYWYtZDRhYjkyOWFhOGUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfZDBmMWRhMDMtZGJjOC00NjNjLWExNTUtNGFlMDIyODQ5ZGZkO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -14061,7 +19329,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 07:00:41 GMT + - Tue, 18 Oct 2022 21:35:21 GMT expires: - '-1' pragma: @@ -14093,9 +19361,9 @@ interactions: ParameterSetName: - -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.7.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfNTVmZDFiZDItYzY4NS00NTg5LTgyYWYtZDRhYjkyOWFhOGUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfZDBmMWRhMDMtZGJjOC00NjNjLWExNTUtNGFlMDIyODQ5ZGZkO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -14107,7 +19375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 11 May 2022 07:01:10 GMT + - Tue, 18 Oct 2022 21:35:51 GMT expires: - '-1' pragma: @@ -14125,4 +19393,4 @@ interactions: status: code: 200 message: OK -version: 1 \ No newline at end of file +version: 1 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 e11493b4333..edf4a74b7d4 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 @@ -346,7 +346,8 @@ def test_iot_hub(self, resource_group, resource_group_location, storage_account) # Test 'az iot hub route test' self.kwargs["route_properties"] = json.dumps({"body": 4}) - self.cmd('iot hub route test --hub-name {0} -g {1} -n {2} --sp {route_properties} --ap {route_properties}'.format(hub, rg, route_name), + props = "--sp '{route_properties}' --ap '{route_properties}'" + self.cmd('iot hub route test --hub-name {0} -g {1} -n {2} {3}'.format(hub, rg, route_name, props), checks=[self.check('result', 'true')]) # Test 'az iot hub route test' From e0202fa23c32e5bf1a3483aee8af6ab3bb290f7f Mon Sep 17 00:00:00 2001 From: Victoria Litvinova Date: Wed, 19 Oct 2022 15:58:38 -0700 Subject: [PATCH 03/10] fix the test_iot_hub recording --- .../tests/latest/recordings/test_iot_hub.yaml | 3276 ++++++++++------- .../iot/tests/latest/test_iot_commands.py | 1 + 2 files changed, 1931 insertions(+), 1346 deletions(-) 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 a4165221efa..643248eef3d 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 @@ -18,17 +18,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/storageAccounts?api-version=2022-05-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adt-bulk-import-test/providers/Microsoft.Storage/storageAccounts/adtbulkimportstorage","name":"adtbulkimportstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-07T00:27:07.8961308Z","key2":"2022-07-07T00:27:07.8961308Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-07T00:27:07.8961308Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-07T00:27:07.8961308Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-07T00:27:07.7399077Z","primaryEndpoints":{"dfs":"https://adtbulkimportstorage.dfs.core.windows.net/","web":"https://adtbulkimportstorage.z13.web.core.windows.net/","blob":"https://adtbulkimportstorage.blob.core.windows.net/","queue":"https://adtbulkimportstorage.queue.core.windows.net/","table":"https://adtbulkimportstorage.table.core.windows.net/","file":"https://adtbulkimportstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adt-df-extension/providers/Microsoft.Storage/storageAccounts/adtdfextension","name":"adtdfextension","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-29T18:21:04.2046567Z","key2":"2022-07-29T18:21:04.2046567Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"table":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"queue":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T18:21:04.0640330Z","primaryEndpoints":{"dfs":"https://adtdfextension.dfs.core.windows.net/","web":"https://adtdfextension.z13.web.core.windows.net/","blob":"https://adtdfextension.blob.core.windows.net/","queue":"https://adtdfextension.queue.core.windows.net/","table":"https://adtdfextension.table.core.windows.net/","file":"https://adtdfextension.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://adtdfextension-secondary.dfs.core.windows.net/","web":"https://adtdfextension-secondary.z13.web.core.windows.net/","blob":"https://adtdfextension-secondary.blob.core.windows.net/","queue":"https://adtdfextension-secondary.queue.core.windows.net/","table":"https://adtdfextension-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Storage/storageAccounts/avagrawtest23","name":"avagrawtest23","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-02T22:04:35.9764387Z","key2":"2022-06-02T22:04:35.9764387Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-02T22:04:35.9764387Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-02T22:04:35.9764387Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-02T22:04:35.8201977Z","primaryEndpoints":{"dfs":"https://avagrawtest23.dfs.core.windows.net/","web":"https://avagrawtest23.z13.web.core.windows.net/","blob":"https://avagrawtest23.blob.core.windows.net/","queue":"https://avagrawtest23.queue.core.windows.net/","table":"https://avagrawtest23.table.core.windows.net/","file":"https://avagrawtest23.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://avagrawtest23-secondary.dfs.core.windows.net/","web":"https://avagrawtest23-secondary.z13.web.core.windows.net/","blob":"https://avagrawtest23-secondary.blob.core.windows.net/","queue":"https://avagrawtest23-secondary.queue.core.windows.net/","table":"https://avagrawtest23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/baltimorepp","name":"baltimorepp","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-20T18:04:57.3856063Z","key2":"2022-06-20T18:04:57.3856063Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T18:04:57.4012371Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T18:04:57.4012371Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-20T18:04:57.2449704Z","primaryEndpoints":{"dfs":"https://baltimorepp.dfs.core.windows.net/","web":"https://baltimorepp.z13.web.core.windows.net/","blob":"https://baltimorepp.blob.core.windows.net/","queue":"https://baltimorepp.queue.core.windows.net/","table":"https://baltimorepp.table.core.windows.net/","file":"https://baltimorepp.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://baltimorepp-secondary.dfs.core.windows.net/","web":"https://baltimorepp-secondary.z13.web.core.windows.net/","blob":"https://baltimorepp-secondary.blob.core.windows.net/","queue":"https://baltimorepp-secondary.queue.core.windows.net/","table":"https://baltimorepp-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/cs210032001c8853a3f","name":"cs210032001c8853a3f","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-09-06T19:47:02.5447463Z","key2":"2022-09-06T19:47:02.5447463Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T19:47:02.5447463Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T19:47:02.5447463Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-09-06T19:47:02.4041041Z","primaryEndpoints":{"dfs":"https://cs210032001c8853a3f.dfs.core.windows.net/","web":"https://cs210032001c8853a3f.z13.web.core.windows.net/","blob":"https://cs210032001c8853a3f.blob.core.windows.net/","queue":"https://cs210032001c8853a3f.queue.core.windows.net/","table":"https://cs210032001c8853a3f.table.core.windows.net/","file":"https://cs210032001c8853a3f.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/datahistorypp","name":"datahistorypp","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-19T17:10:36.1817423Z","key2":"2021-07-19T17:10:36.1817423Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-19T17:10:36.1817423Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-19T17:10:36.1817423Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-19T17:10:36.0879993Z","primaryEndpoints":{"dfs":"https://datahistorypp.dfs.core.windows.net/","web":"https://datahistorypp.z13.web.core.windows.net/","blob":"https://datahistorypp.blob.core.windows.net/","queue":"https://datahistorypp.queue.core.windows.net/","table":"https://datahistorypp.table.core.windows.net/","file":"https://datahistorypp.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://datahistorypp-secondary.dfs.core.windows.net/","web":"https://datahistorypp-secondary.z13.web.core.windows.net/","blob":"https://datahistorypp-secondary.blob.core.windows.net/","queue":"https://datahistorypp-secondary.queue.core.windows.net/","table":"https://datahistorypp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/hubstore11c8","name":"hubstore11c8","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"iot_resource":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5"},"properties":{"keyCreationTime":{"key1":"2022-10-18T17:37:23.2635736Z","key2":"2022-10-18T17:37:23.2635736Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T17:37:23.2635736Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T17:37:23.2635736Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-18T17:37:23.1072957Z","primaryEndpoints":{"dfs":"https://hubstore11c8.dfs.core.windows.net/","web":"https://hubstore11c8.z13.web.core.windows.net/","blob":"https://hubstore11c8.blob.core.windows.net/","queue":"https://hubstore11c8.queue.core.windows.net/","table":"https://hubstore11c8.table.core.windows.net/","file":"https://hubstore11c8.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://hubstore11c8-secondary.dfs.core.windows.net/","web":"https://hubstore11c8-secondary.z13.web.core.windows.net/","blob":"https://hubstore11c8-secondary.blob.core.windows.net/","queue":"https://hubstore11c8-secondary.queue.core.windows.net/","table":"https://hubstore11c8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Storage/storageAccounts/identitiestest","name":"identitiestest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-10-06T18:12:55.8361914Z","key2":"2022-10-06T18:12:55.8361914Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-06T18:12:55.8518461Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-06T18:12:55.8518461Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-06T18:12:55.6799956Z","primaryEndpoints":{"dfs":"https://identitiestest.dfs.core.windows.net/","web":"https://identitiestest.z13.web.core.windows.net/","blob":"https://identitiestest.blob.core.windows.net/","queue":"https://identitiestest.queue.core.windows.net/","table":"https://identitiestest.table.core.windows.net/","file":"https://identitiestest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://identitiestest-secondary.dfs.core.windows.net/","web":"https://identitiestest-secondary.z13.web.core.windows.net/","blob":"https://identitiestest-secondary.blob.core.windows.net/","queue":"https://identitiestest-secondary.queue.core.windows.net/","table":"https://identitiestest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iot-hub-extension-dogfood/providers/Microsoft.Storage/storageAccounts/iothubdfextension","name":"iothubdfextension","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-08T20:04:13.2606504Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-08T20:04:13.2606504Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-12-08T20:04:13.1512596Z","primaryEndpoints":{"dfs":"https://iothubdfextension.dfs.core.windows.net/","web":"https://iothubdfextension.z13.web.core.windows.net/","blob":"https://iothubdfextension.blob.core.windows.net/","queue":"https://iothubdfextension.queue.core.windows.net/","table":"https://iothubdfextension.table.core.windows.net/","file":"https://iothubdfextension.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://iothubdfextension-secondary.dfs.core.windows.net/","web":"https://iothubdfextension-secondary.z13.web.core.windows.net/","blob":"https://iothubdfextension-secondary.blob.core.windows.net/","queue":"https://iothubdfextension-secondary.queue.core.windows.net/","table":"https://iothubdfextension-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Storage/storageAccounts/jiacjutest","name":"jiacjutest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-16T00:00:42.1218840Z","key2":"2021-11-16T00:00:42.1218840Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-16T00:00:42.1218840Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-16T00:00:42.1218840Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-16T00:00:41.8874796Z","primaryEndpoints":{"blob":"https://jiacjutest.blob.core.windows.net/","queue":"https://jiacjutest.queue.core.windows.net/","table":"https://jiacjutest.table.core.windows.net/","file":"https://jiacjutest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avins-models-repo-test/providers/Microsoft.Storage/storageAccounts/modelsrepotest230291","name":"modelsrepotest230291","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-11T22:28:39.5386501Z","key2":"2022-05-11T22:28:39.5386501Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T22:28:39.5386501Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T22:28:39.5386501Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-11T22:28:39.3511797Z","primaryEndpoints":{"dfs":"https://modelsrepotest230291.dfs.core.windows.net/","web":"https://modelsrepotest230291.z13.web.core.windows.net/","blob":"https://modelsrepotest230291.blob.core.windows.net/","queue":"https://modelsrepotest230291.queue.core.windows.net/","table":"https://modelsrepotest230291.table.core.windows.net/","file":"https://modelsrepotest230291.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://modelsrepotest230291-secondary.dfs.core.windows.net/","web":"https://modelsrepotest230291-secondary.z13.web.core.windows.net/","blob":"https://modelsrepotest230291-secondary.blob.core.windows.net/","queue":"https://modelsrepotest230291-secondary.queue.core.windows.net/","table":"https://modelsrepotest230291-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/edge_billable_modules/providers/Microsoft.Storage/storageAccounts/privatepreviewbilledge","name":"privatepreviewbilledge","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-01-14T03:26:59.5305000Z","key2":"2022-01-14T03:26:59.5305000Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-14T03:26:59.5305000Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-14T03:26:59.5305000Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-14T03:26:59.3898773Z","primaryEndpoints":{"dfs":"https://privatepreviewbilledge.dfs.core.windows.net/","web":"https://privatepreviewbilledge.z13.web.core.windows.net/","blob":"https://privatepreviewbilledge.blob.core.windows.net/","queue":"https://privatepreviewbilledge.queue.core.windows.net/","table":"https://privatepreviewbilledge.table.core.windows.net/","file":"https://privatepreviewbilledge.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://privatepreviewbilledge-secondary.dfs.core.windows.net/","web":"https://privatepreviewbilledge-secondary.z13.web.core.windows.net/","blob":"https://privatepreviewbilledge-secondary.blob.core.windows.net/","queue":"https://privatepreviewbilledge-secondary.queue.core.windows.net/","table":"https://privatepreviewbilledge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Storage/storageAccounts/raharrideviceupdates","name":"raharrideviceupdates","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-10T21:56:24.8723906Z","key2":"2021-09-10T21:56:24.8723906Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T21:56:24.8723906Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T21:56:24.8723906Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-09-10T21:56:24.7786183Z","primaryEndpoints":{"blob":"https://raharrideviceupdates.blob.core.windows.net/","queue":"https://raharrideviceupdates.queue.core.windows.net/","table":"https://raharrideviceupdates.table.core.windows.net/","file":"https://raharrideviceupdates.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Storage/storageAccounts/ridotempdata","name":"ridotempdata","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-19T21:49:24.0720856Z","key2":"2021-04-19T21:49:24.0720856Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-19T21:49:24.0720856Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-19T21:49:24.0720856Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-19T21:49:23.9627356Z","primaryEndpoints":{"dfs":"https://ridotempdata.dfs.core.windows.net/","web":"https://ridotempdata.z13.web.core.windows.net/","blob":"https://ridotempdata.blob.core.windows.net/","queue":"https://ridotempdata.queue.core.windows.net/","table":"https://ridotempdata.table.core.windows.net/","file":"https://ridotempdata.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ridotempdata-secondary.dfs.core.windows.net/","web":"https://ridotempdata-secondary.z13.web.core.windows.net/","blob":"https://ridotempdata-secondary.blob.core.windows.net/","queue":"https://ridotempdata-secondary.queue.core.windows.net/","table":"https://ridotempdata-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslerstorage","name":"rkesslerstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-31T04:38:45.5328731Z","key2":"2021-08-31T04:38:45.5328731Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T04:38:45.5328731Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T04:38:45.5328731Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T04:38:45.4234853Z","primaryEndpoints":{"dfs":"https://rkesslerstorage.dfs.core.windows.net/","web":"https://rkesslerstorage.z13.web.core.windows.net/","blob":"https://rkesslerstorage.blob.core.windows.net/","queue":"https://rkesslerstorage.queue.core.windows.net/","table":"https://rkesslerstorage.table.core.windows.net/","file":"https://rkesslerstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://rkesslerstorage-secondary.dfs.core.windows.net/","web":"https://rkesslerstorage-secondary.z13.web.core.windows.net/","blob":"https://rkesslerstorage-secondary.blob.core.windows.net/","queue":"https://rkesslerstorage-secondary.queue.core.windows.net/","table":"https://rkesslerstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/vilitstore","name":"vilitstore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-23T20:09:36.4369560Z","key2":"2021-08-23T20:09:36.4369560Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T20:09:36.4369560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T20:09:36.4369560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T20:09:36.3275868Z","primaryEndpoints":{"dfs":"https://vilitstore.dfs.core.windows.net/","web":"https://vilitstore.z13.web.core.windows.net/","blob":"https://vilitstore.blob.core.windows.net/","queue":"https://vilitstore.queue.core.windows.net/","table":"https://vilitstore.table.core.windows.net/","file":"https://vilitstore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"Logging, - Metrics, 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.rglpb44c77ofpbl2aznugwkyurgp4bganvrh364eeuwcyvajlpagbqsbjb7rd7fukrf/providers/Microsoft.Storage/storageAccounts/clitest2tvnubwb6ky2be36j","name":"clitest2tvnubwb6ky2be36j","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:03:19.3282229Z","key2":"2022-10-14T20:03:19.3282229Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:03:19.3438435Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:03:19.3438435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:03:19.2344681Z","primaryEndpoints":{"blob":"https://clitest2tvnubwb6ky2be36j.blob.core.windows.net/","queue":"https://clitest2tvnubwb6ky2be36j.queue.core.windows.net/","table":"https://clitest2tvnubwb6ky2be36j.table.core.windows.net/","file":"https://clitest2tvnubwb6ky2be36j.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.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Storage/storageAccounts/clitest5qkwfloklp7b2g7ng","name":"clitest5qkwfloklp7b2g7ng","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:04:21.9696331Z","key2":"2022-10-14T20:04:21.9696331Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:04:21.9852777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:04:21.9852777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:04:21.8758874Z","primaryEndpoints":{"blob":"https://clitest5qkwfloklp7b2g7ng.blob.core.windows.net/","queue":"https://clitest5qkwfloklp7b2g7ng.queue.core.windows.net/","table":"https://clitest5qkwfloklp7b2g7ng.table.core.windows.net/","file":"https://clitest5qkwfloklp7b2g7ng.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.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Storage/storageAccounts/clitesteklqzuyizgeeenn75","name":"clitesteklqzuyizgeeenn75","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:48:08.1733907Z","key2":"2022-10-18T18:48:08.1733907Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.1733907Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.1733907Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:48:08.0640087Z","primaryEndpoints":{"blob":"https://clitesteklqzuyizgeeenn75.blob.core.windows.net/","queue":"https://clitesteklqzuyizgeeenn75.queue.core.windows.net/","table":"https://clitesteklqzuyizgeeenn75.table.core.windows.net/","file":"https://clitesteklqzuyizgeeenn75.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.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Storage/storageAccounts/clitestigva6doxivhvo5mqm","name":"clitestigva6doxivhvo5mqm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:30:07.9546953Z","key2":"2022-10-18T18:30:07.9546953Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:07.9546953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:07.9546953Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:30:07.8453184Z","primaryEndpoints":{"blob":"https://clitestigva6doxivhvo5mqm.blob.core.windows.net/","queue":"https://clitestigva6doxivhvo5mqm.queue.core.windows.net/","table":"https://clitestigva6doxivhvo5mqm.table.core.windows.net/","file":"https://clitestigva6doxivhvo5mqm.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.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Storage/storageAccounts/clitestmmxqd6sx3bmeg75oa","name":"clitestmmxqd6sx3bmeg75oa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:31:14.4418256Z","key2":"2022-10-14T20:31:14.4418256Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.4574466Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.4574466Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:31:14.3324427Z","primaryEndpoints":{"blob":"https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/","queue":"https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/","table":"https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/","file":"https://clitestmmxqd6sx3bmeg75oa.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":{"keyCreationTime":{"key1":"2022-10-18T20:58:48.5500485Z","key2":"2022-10-18T20:58:48.5500485Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T20:58:48.5500485Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T20:58:48.5500485Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T20:58:48.4250778Z","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.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Storage/storageAccounts/clitestwbufuo762kwfy7o53","name":"clitestwbufuo762kwfy7o53","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:48:08.7846725Z","key2":"2022-10-18T18:48:08.7846725Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.7983950Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.7983950Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:48:08.6577638Z","primaryEndpoints":{"blob":"https://clitestwbufuo762kwfy7o53.blob.core.windows.net/","queue":"https://clitestwbufuo762kwfy7o53.queue.core.windows.net/","table":"https://clitestwbufuo762kwfy7o53.table.core.windows.net/","file":"https://clitestwbufuo762kwfy7o53.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.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Storage/storageAccounts/clitestx5vvad2p4lj422dtt","name":"clitestx5vvad2p4lj422dtt","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:31:14.2074274Z","key2":"2022-10-14T20:31:14.2074274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.2230642Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.2230642Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:31:14.0981110Z","primaryEndpoints":{"blob":"https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/","queue":"https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/","table":"https://clitestx5vvad2p4lj422dtt.table.core.windows.net/","file":"https://clitestx5vvad2p4lj422dtt.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.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Storage/storageAccounts/clitestxr6xomz7iii3qglyv","name":"clitestxr6xomz7iii3qglyv","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:58:57.6340465Z","key2":"2022-10-14T20:58:57.6340465Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:58:57.6340465Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:58:57.6340465Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:58:57.5246374Z","primaryEndpoints":{"blob":"https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/","queue":"https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/","table":"https://clitestxr6xomz7iii3qglyv.table.core.windows.net/","file":"https://clitestxr6xomz7iii3qglyv.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.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Storage/storageAccounts/clitestzzaeirfu6bbwfj4ja","name":"clitestzzaeirfu6bbwfj4ja","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:30:08.1422082Z","key2":"2022-10-18T18:30:08.1422082Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:08.1578272Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:08.1578272Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:30:08.0484744Z","primaryEndpoints":{"blob":"https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/","queue":"https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/","table":"https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/","file":"https://clitestzzaeirfu6bbwfj4ja.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/cs4100300009acbc8c3","name":"cs4100300009acbc8c3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-09T18:44:35.6761185Z","key2":"2022-02-09T18:44:35.6761185Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-09T18:44:35.6761185Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-09T18:44:35.6761185Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-09T18:44:35.5823418Z","primaryEndpoints":{"dfs":"https://cs4100300009acbc8c3.dfs.core.windows.net/","web":"https://cs4100300009acbc8c3.z22.web.core.windows.net/","blob":"https://cs4100300009acbc8c3.blob.core.windows.net/","queue":"https://cs4100300009acbc8c3.queue.core.windows.net/","table":"https://cs4100300009acbc8c3.table.core.windows.net/","file":"https://cs4100300009acbc8c3.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/cs41003200066a7dd52","name":"cs41003200066a7dd52","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-18T17:36:45.6533903Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-18T17:36:45.6533903Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-18T17:36:45.5752594Z","primaryEndpoints":{"dfs":"https://cs41003200066a7dd52.dfs.core.windows.net/","web":"https://cs41003200066a7dd52.z22.web.core.windows.net/","blob":"https://cs41003200066a7dd52.blob.core.windows.net/","queue":"https://cs41003200066a7dd52.queue.core.windows.net/","table":"https://cs41003200066a7dd52.table.core.windows.net/","file":"https://cs41003200066a7dd52.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/cs41003200200848f41","name":"cs41003200200848f41","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-06-08T18:15:57.8153697Z","key2":"2022-06-08T18:15:57.8153697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-08T18:15:57.8153697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-08T18:15:57.8153697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-08T18:15:57.7216712Z","primaryEndpoints":{"dfs":"https://cs41003200200848f41.dfs.core.windows.net/","web":"https://cs41003200200848f41.z22.web.core.windows.net/","blob":"https://cs41003200200848f41.blob.core.windows.net/","queue":"https://cs41003200200848f41.queue.core.windows.net/","table":"https://cs41003200200848f41.table.core.windows.net/","file":"https://cs41003200200848f41.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/cs410033fff96467dc6","name":"cs410033fff96467dc6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-12-13T17:13:30.0923471Z","key2":"2021-12-13T17:13:30.0923471Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-13T17:13:30.0923471Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-13T17:13:30.0923471Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-13T17:13:29.9986006Z","primaryEndpoints":{"dfs":"https://cs410033fff96467dc6.dfs.core.windows.net/","web":"https://cs410033fff96467dc6.z22.web.core.windows.net/","blob":"https://cs410033fff96467dc6.blob.core.windows.net/","queue":"https://cs410033fff96467dc6.queue.core.windows.net/","table":"https://cs410033fff96467dc6.table.core.windows.net/","file":"https://cs410033fff96467dc6.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/cs410037ffe801b4af4","name":"cs410037ffe801b4af4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T12:02:15.3272698Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T12:02:15.3272698Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-20T12:02:15.2647454Z","primaryEndpoints":{"dfs":"https://cs410037ffe801b4af4.dfs.core.windows.net/","web":"https://cs410037ffe801b4af4.z22.web.core.windows.net/","blob":"https://cs410037ffe801b4af4.blob.core.windows.net/","queue":"https://cs410037ffe801b4af4.queue.core.windows.net/","table":"https://cs410037ffe801b4af4.table.core.windows.net/","file":"https://cs410037ffe801b4af4.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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"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_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iotqrcodes/providers/Microsoft.Storage/storageAccounts/iotqrcodes","name":"iotqrcodes","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-29T18:48:51.7888406Z","key2":"2021-07-29T18:48:51.7888406Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T18:48:51.7888406Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T18:48:51.7888406Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-29T18:48:51.7263422Z","primaryEndpoints":{"dfs":"https://iotqrcodes.dfs.core.windows.net/","web":"https://iotqrcodes.z22.web.core.windows.net/","blob":"https://iotqrcodes.blob.core.windows.net/","queue":"https://iotqrcodes.queue.core.windows.net/","table":"https://iotqrcodes.table.core.windows.net/","file":"https://iotqrcodes.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-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320004055e7df","name":"cs7100320004055e7df","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-08-25T17:36:35.3733486Z","key2":"2022-08-25T17:36:35.3733486Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T17:36:35.7639780Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T17:36:35.7639780Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-25T17:36:35.2795833Z","primaryEndpoints":{"dfs":"https://cs7100320004055e7df.dfs.core.windows.net/","web":"https://cs7100320004055e7df.z21.web.core.windows.net/","blob":"https://cs7100320004055e7df.blob.core.windows.net/","queue":"https://cs7100320004055e7df.queue.core.windows.net/","table":"https://cs7100320004055e7df.table.core.windows.net/","file":"https://cs7100320004055e7df.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/iliesrgbf29","name":"iliesrgbf29","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-21T18:06:13.8315498Z","key2":"2022-06-21T18:06:13.8315498Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-21T18:06:13.8315498Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-21T18:06:13.8315498Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-21T18:06:13.7379857Z","primaryEndpoints":{"blob":"https://iliesrgbf29.blob.core.windows.net/","queue":"https://iliesrgbf29.queue.core.windows.net/","table":"https://iliesrgbf29.table.core.windows.net/","file":"https://iliesrgbf29.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/vilit8722","name":"vilit8722","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-11T18:59:07.4717431Z","key2":"2022-05-11T18:59:07.4717431Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T18:59:07.4717431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T18:59:07.4717431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-11T18:59:07.3623120Z","primaryEndpoints":{"blob":"https://vilit8722.blob.core.windows.net/","queue":"https://vilit8722.queue.core.windows.net/","table":"https://vilit8722.table.core.windows.net/","file":"https://vilit8722.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Storage/storageAccounts/vilitehtoazmon8c23","name":"vilitehtoazmon8c23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T17:19:46.9319689Z","key2":"2022-03-31T17:19:46.9319689Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T17:19:46.9319689Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T17:19:46.9319689Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-31T17:19:46.8225518Z","primaryEndpoints":{"blob":"https://vilitehtoazmon8c23.blob.core.windows.net/","queue":"https://vilitehtoazmon8c23.queue.core.windows.net/","table":"https://vilitehtoazmon8c23.table.core.windows.net/","file":"https://vilitehtoazmon8c23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dt_test/providers/Microsoft.Storage/storageAccounts/wqklkwjkjwejkwe","name":"wqklkwjkjwejkwe","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-03-16T15:47:52.5520552Z","key2":"2021-03-16T15:47:52.5520552Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-16T15:47:52.5520552Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-16T15:47:52.5520552Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-16T15:47:52.4739156Z","primaryEndpoints":{"dfs":"https://wqklkwjkjwejkwe.dfs.core.windows.net/","web":"https://wqklkwjkjwejkwe.z19.web.core.windows.net/","blob":"https://wqklkwjkjwejkwe.blob.core.windows.net/","queue":"https://wqklkwjkjwejkwe.queue.core.windows.net/","table":"https://wqklkwjkjwejkwe.table.core.windows.net/","file":"https://wqklkwjkjwejkwe.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Storage/storageAccounts/aducli","name":"aducli","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"dnsEndpointType":"Standard","allowedCopyScope":"AAD","defaultToOAuthAuthentication":true,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-21T18:11:40.7795178Z","key2":"2022-07-21T18:11:40.7795178Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T18:11:40.7951256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T18:11:40.7951256Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-21T18:11:40.6857415Z","primaryEndpoints":{"dfs":"https://aducli.dfs.core.windows.net/","web":"https://aducli.z5.web.core.windows.net/","blob":"https://aducli.blob.core.windows.net/","queue":"https://aducli.queue.core.windows.net/","table":"https://aducli.table.core.windows.net/","file":"https://aducli.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://aducli-secondary.dfs.core.windows.net/","web":"https://aducli-secondary.z5.web.core.windows.net/","blob":"https://aducli-secondary.blob.core.windows.net/","queue":"https://aducli-secondary.queue.core.windows.net/","table":"https://aducli-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Storage/storageAccounts/azcliintteststorage","name":"azcliintteststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-18T00:47:50.5253938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-18T00:47:50.5253938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-18T00:47:50.4473020Z","primaryEndpoints":{"dfs":"https://azcliintteststorage.dfs.core.windows.net/","web":"https://azcliintteststorage.z5.web.core.windows.net/","blob":"https://azcliintteststorage.blob.core.windows.net/","queue":"https://azcliintteststorage.queue.core.windows.net/","table":"https://azcliintteststorage.table.core.windows.net/","file":"https://azcliintteststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azcliintteststorage-secondary.dfs.core.windows.net/","web":"https://azcliintteststorage-secondary.z5.web.core.windows.net/","blob":"https://azcliintteststorage-secondary.blob.core.windows.net/","queue":"https://azcliintteststorage-secondary.queue.core.windows.net/","table":"https://azcliintteststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventualC/providers/Microsoft.Storage/storageAccounts/dmrstore","name":"dmrstore","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T01:26:42.2484427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T01:26:42.2484427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-20T01:26:42.1546871Z","primaryEndpoints":{"dfs":"https://dmrstore.dfs.core.windows.net/","web":"https://dmrstore.z5.web.core.windows.net/","blob":"https://dmrstore.blob.core.windows.net/","queue":"https://dmrstore.queue.core.windows.net/","table":"https://dmrstore.table.core.windows.net/","file":"https://dmrstore.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rkiotstorage2","name":"rkiotstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T23:15:17.7346844Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T23:15:17.7346844Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-23T23:15:17.6409336Z","primaryEndpoints":{"dfs":"https://rkiotstorage2.dfs.core.windows.net/","web":"https://rkiotstorage2.z5.web.core.windows.net/","blob":"https://rkiotstorage2.blob.core.windows.net/","queue":"https://rkiotstorage2.queue.core.windows.net/","table":"https://rkiotstorage2.table.core.windows.net/","file":"https://rkiotstorage2.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"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":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"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"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rktsistorage","name":"rktsistorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-05T17:19:34.7436222Z","key2":"2021-04-05T17:19:34.7436222Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-05T17:19:34.7592460Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-05T17:19:34.7592460Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-05T17:19:34.6498962Z","primaryEndpoints":{"dfs":"https://rktsistorage.dfs.core.windows.net/","web":"https://rktsistorage.z5.web.core.windows.net/","blob":"https://rktsistorage.blob.core.windows.net/","queue":"https://rktsistorage.queue.core.windows.net/","table":"https://rktsistorage.table.core.windows.net/","file":"https://rktsistorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/storageaccountrkiot8c13","name":"storageaccountrkiot8c13","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-16T22:15:10.5759611Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-16T22:15:10.5759611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-09-16T22:15:10.4821881Z","primaryEndpoints":{"blob":"https://storageaccountrkiot8c13.blob.core.windows.net/","queue":"https://storageaccountrkiot8c13.queue.core.windows.net/","table":"https://storageaccountrkiot8c13.table.core.windows.net/","file":"https://storageaccountrkiot8c13.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/storageaccountrkiotb9e5","name":"storageaccountrkiotb9e5","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T19:30:15.3804746Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T19:30:15.3804746Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-02-23T19:30:15.3023373Z","primaryEndpoints":{"blob":"https://storageaccountrkiotb9e5.blob.core.windows.net/","queue":"https://storageaccountrkiotb9e5.queue.core.windows.net/","table":"https://storageaccountrkiotb9e5.table.core.windows.net/","file":"https://storageaccountrkiotb9e5.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/testrevocation","name":"testrevocation","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-10T19:00:22.0329798Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-10T19:00:22.0329798Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-10T19:00:21.9705172Z","primaryEndpoints":{"dfs":"https://testrevocation.dfs.core.windows.net/","web":"https://testrevocation.z5.web.core.windows.net/","blob":"https://testrevocation.blob.core.windows.net/","queue":"https://testrevocation.queue.core.windows.net/","table":"https://testrevocation.table.core.windows.net/","file":"https://testrevocation.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testrevocation-secondary.dfs.core.windows.net/","web":"https://testrevocation-secondary.z5.web.core.windows.net/","blob":"https://testrevocation-secondary.blob.core.windows.net/","queue":"https://testrevocation-secondary.queue.core.windows.net/","table":"https://testrevocation-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslereasteaup2storage","name":"rkesslereasteaup2storage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-28T16:38:28.5298643Z","key2":"2021-10-28T16:38:28.5298643Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T16:38:28.5298643Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T16:38:28.5298643Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T16:38:28.4517312Z","primaryEndpoints":{"dfs":"https://rkesslereasteaup2storage.dfs.core.windows.net/","web":"https://rkesslereasteaup2storage.z3.web.core.windows.net/","blob":"https://rkesslereasteaup2storage.blob.core.windows.net/","queue":"https://rkesslereasteaup2storage.queue.core.windows.net/","table":"https://rkesslereasteaup2storage.table.core.windows.net/","file":"https://rkesslereasteaup2storage.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://rkesslereasteaup2storage-secondary.dfs.core.windows.net/","web":"https://rkesslereasteaup2storage-secondary.z3.web.core.windows.net/","blob":"https://rkesslereasteaup2storage-secondary.blob.core.windows.net/","queue":"https://rkesslereasteaup2storage-secondary.queue.core.windows.net/","table":"https://rkesslereasteaup2storage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslerstoragev1","name":"rkesslerstoragev1","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"keyCreationTime":{"key1":"2021-08-31T15:39:41.4036635Z","key2":"2021-08-31T15:39:41.4036635Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T15:39:41.4193120Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T15:39:41.4193120Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-31T15:39:41.3411838Z","primaryEndpoints":{"blob":"https://rkesslerstoragev1.blob.core.windows.net/","queue":"https://rkesslerstoragev1.queue.core.windows.net/","table":"https://rkesslerstoragev1.table.core.windows.net/","file":"https://rkesslerstoragev1.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://rkesslerstoragev1-secondary.blob.core.windows.net/","queue":"https://rkesslerstoragev1-secondary.queue.core.windows.net/","table":"https://rkesslerstoragev1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Storage/storageAccounts/jeremyjonesstorage1","name":"jeremyjonesstorage1","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-05-31T20:02:55.4385674Z","key2":"2022-05-31T20:02:55.4385674Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":true,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-31T20:02:55.4385674Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-31T20:02:55.4385674Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-31T20:02:55.3760966Z","primaryEndpoints":{"dfs":"https://jeremyjonesstorage1.dfs.core.windows.net/","web":"https://jeremyjonesstorage1.z2.web.core.windows.net/","blob":"https://jeremyjonesstorage1.blob.core.windows.net/","queue":"https://jeremyjonesstorage1.queue.core.windows.net/","table":"https://jeremyjonesstorage1.table.core.windows.net/","file":"https://jeremyjonesstorage1.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}}]}' + string: '{"value":[{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adt-bulk-import-test/providers/Microsoft.Storage/storageAccounts/adtbulkimportstorage","name":"adtbulkimportstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-07T00:27:07.8961308Z","key2":"2022-07-07T00:27:07.8961308Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-07T00:27:07.8961308Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-07T00:27:07.8961308Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-07T00:27:07.7399077Z","primaryEndpoints":{"dfs":"https://adtbulkimportstorage.dfs.core.windows.net/","web":"https://adtbulkimportstorage.z13.web.core.windows.net/","blob":"https://adtbulkimportstorage.blob.core.windows.net/","queue":"https://adtbulkimportstorage.queue.core.windows.net/","table":"https://adtbulkimportstorage.table.core.windows.net/","file":"https://adtbulkimportstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/adt-df-extension/providers/Microsoft.Storage/storageAccounts/adtdfextension","name":"adtdfextension","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-29T18:21:04.2046567Z","key2":"2022-07-29T18:21:04.2046567Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"table":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"queue":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-29T18:21:04.2046567Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-29T18:21:04.0640330Z","primaryEndpoints":{"dfs":"https://adtdfextension.dfs.core.windows.net/","web":"https://adtdfextension.z13.web.core.windows.net/","blob":"https://adtdfextension.blob.core.windows.net/","queue":"https://adtdfextension.queue.core.windows.net/","table":"https://adtdfextension.table.core.windows.net/","file":"https://adtdfextension.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://adtdfextension-secondary.dfs.core.windows.net/","web":"https://adtdfextension-secondary.z13.web.core.windows.net/","blob":"https://adtdfextension-secondary.blob.core.windows.net/","queue":"https://adtdfextension-secondary.queue.core.windows.net/","table":"https://adtdfextension-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Storage/storageAccounts/avagrawtest23","name":"avagrawtest23","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-02T22:04:35.9764387Z","key2":"2022-06-02T22:04:35.9764387Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-02T22:04:35.9764387Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-02T22:04:35.9764387Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-02T22:04:35.8201977Z","primaryEndpoints":{"dfs":"https://avagrawtest23.dfs.core.windows.net/","web":"https://avagrawtest23.z13.web.core.windows.net/","blob":"https://avagrawtest23.blob.core.windows.net/","queue":"https://avagrawtest23.queue.core.windows.net/","table":"https://avagrawtest23.table.core.windows.net/","file":"https://avagrawtest23.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://avagrawtest23-secondary.dfs.core.windows.net/","web":"https://avagrawtest23-secondary.z13.web.core.windows.net/","blob":"https://avagrawtest23-secondary.blob.core.windows.net/","queue":"https://avagrawtest23-secondary.queue.core.windows.net/","table":"https://avagrawtest23-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/baltimorepp","name":"baltimorepp","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-06-20T18:04:57.3856063Z","key2":"2022-06-20T18:04:57.3856063Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T18:04:57.4012371Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-20T18:04:57.4012371Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-20T18:04:57.2449704Z","primaryEndpoints":{"dfs":"https://baltimorepp.dfs.core.windows.net/","web":"https://baltimorepp.z13.web.core.windows.net/","blob":"https://baltimorepp.blob.core.windows.net/","queue":"https://baltimorepp.queue.core.windows.net/","table":"https://baltimorepp.table.core.windows.net/","file":"https://baltimorepp.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://baltimorepp-secondary.dfs.core.windows.net/","web":"https://baltimorepp-secondary.z13.web.core.windows.net/","blob":"https://baltimorepp-secondary.blob.core.windows.net/","queue":"https://baltimorepp-secondary.queue.core.windows.net/","table":"https://baltimorepp-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/cs210032001c8853a3f","name":"cs210032001c8853a3f","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-09-06T19:47:02.5447463Z","key2":"2022-09-06T19:47:02.5447463Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T19:47:02.5447463Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-09-06T19:47:02.5447463Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-09-06T19:47:02.4041041Z","primaryEndpoints":{"dfs":"https://cs210032001c8853a3f.dfs.core.windows.net/","web":"https://cs210032001c8853a3f.z13.web.core.windows.net/","blob":"https://cs210032001c8853a3f.blob.core.windows.net/","queue":"https://cs210032001c8853a3f.queue.core.windows.net/","table":"https://cs210032001c8853a3f.table.core.windows.net/","file":"https://cs210032001c8853a3f.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/datahistorypp","name":"datahistorypp","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-19T17:10:36.1817423Z","key2":"2021-07-19T17:10:36.1817423Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-19T17:10:36.1817423Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-19T17:10:36.1817423Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-19T17:10:36.0879993Z","primaryEndpoints":{"dfs":"https://datahistorypp.dfs.core.windows.net/","web":"https://datahistorypp.z13.web.core.windows.net/","blob":"https://datahistorypp.blob.core.windows.net/","queue":"https://datahistorypp.queue.core.windows.net/","table":"https://datahistorypp.table.core.windows.net/","file":"https://datahistorypp.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://datahistorypp-secondary.dfs.core.windows.net/","web":"https://datahistorypp-secondary.z13.web.core.windows.net/","blob":"https://datahistorypp-secondary.blob.core.windows.net/","queue":"https://datahistorypp-secondary.queue.core.windows.net/","table":"https://datahistorypp-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/hubstore11c8","name":"hubstore11c8","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{"iot_resource":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5"},"properties":{"keyCreationTime":{"key1":"2022-10-18T17:37:23.2635736Z","key2":"2022-10-18T17:37:23.2635736Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T17:37:23.2635736Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T17:37:23.2635736Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-18T17:37:23.1072957Z","primaryEndpoints":{"dfs":"https://hubstore11c8.dfs.core.windows.net/","web":"https://hubstore11c8.z13.web.core.windows.net/","blob":"https://hubstore11c8.blob.core.windows.net/","queue":"https://hubstore11c8.queue.core.windows.net/","table":"https://hubstore11c8.table.core.windows.net/","file":"https://hubstore11c8.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://hubstore11c8-secondary.dfs.core.windows.net/","web":"https://hubstore11c8-secondary.z13.web.core.windows.net/","blob":"https://hubstore11c8-secondary.blob.core.windows.net/","queue":"https://hubstore11c8-secondary.queue.core.windows.net/","table":"https://hubstore11c8-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Storage/storageAccounts/identitiestest","name":"identitiestest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"dnsEndpointType":"Standard","defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-10-06T18:12:55.8361914Z","key2":"2022-10-06T18:12:55.8361914Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-06T18:12:55.8518461Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-06T18:12:55.8518461Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-06T18:12:55.6799956Z","primaryEndpoints":{"dfs":"https://identitiestest.dfs.core.windows.net/","web":"https://identitiestest.z13.web.core.windows.net/","blob":"https://identitiestest.blob.core.windows.net/","queue":"https://identitiestest.queue.core.windows.net/","table":"https://identitiestest.table.core.windows.net/","file":"https://identitiestest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://identitiestest-secondary.dfs.core.windows.net/","web":"https://identitiestest-secondary.z13.web.core.windows.net/","blob":"https://identitiestest-secondary.blob.core.windows.net/","queue":"https://identitiestest-secondary.queue.core.windows.net/","table":"https://identitiestest-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iot-hub-extension-dogfood/providers/Microsoft.Storage/storageAccounts/iothubdfextension","name":"iothubdfextension","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-08T20:04:13.2606504Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-12-08T20:04:13.2606504Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-12-08T20:04:13.1512596Z","primaryEndpoints":{"dfs":"https://iothubdfextension.dfs.core.windows.net/","web":"https://iothubdfextension.z13.web.core.windows.net/","blob":"https://iothubdfextension.blob.core.windows.net/","queue":"https://iothubdfextension.queue.core.windows.net/","table":"https://iothubdfextension.table.core.windows.net/","file":"https://iothubdfextension.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://iothubdfextension-secondary.dfs.core.windows.net/","web":"https://iothubdfextension-secondary.z13.web.core.windows.net/","blob":"https://iothubdfextension-secondary.blob.core.windows.net/","queue":"https://iothubdfextension-secondary.queue.core.windows.net/","table":"https://iothubdfextension-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Storage/storageAccounts/jiacjutest","name":"jiacjutest","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-16T00:00:42.1218840Z","key2":"2021-11-16T00:00:42.1218840Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-16T00:00:42.1218840Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-16T00:00:42.1218840Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-16T00:00:41.8874796Z","primaryEndpoints":{"blob":"https://jiacjutest.blob.core.windows.net/","queue":"https://jiacjutest.queue.core.windows.net/","table":"https://jiacjutest.table.core.windows.net/","file":"https://jiacjutest.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGZRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avins-models-repo-test/providers/Microsoft.Storage/storageAccounts/modelsrepotest230291","name":"modelsrepotest230291","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-11T22:28:39.5386501Z","key2":"2022-05-11T22:28:39.5386501Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T22:28:39.5386501Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T22:28:39.5386501Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-11T22:28:39.3511797Z","primaryEndpoints":{"dfs":"https://modelsrepotest230291.dfs.core.windows.net/","web":"https://modelsrepotest230291.z13.web.core.windows.net/","blob":"https://modelsrepotest230291.blob.core.windows.net/","queue":"https://modelsrepotest230291.queue.core.windows.net/","table":"https://modelsrepotest230291.table.core.windows.net/","file":"https://modelsrepotest230291.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://modelsrepotest230291-secondary.dfs.core.windows.net/","web":"https://modelsrepotest230291-secondary.z13.web.core.windows.net/","blob":"https://modelsrepotest230291-secondary.blob.core.windows.net/","queue":"https://modelsrepotest230291-secondary.queue.core.windows.net/","table":"https://modelsrepotest230291-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/edge_billable_modules/providers/Microsoft.Storage/storageAccounts/privatepreviewbilledge","name":"privatepreviewbilledge","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2022-01-14T03:26:59.5305000Z","key2":"2022-01-14T03:26:59.5305000Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-14T03:26:59.5305000Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-01-14T03:26:59.5305000Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-01-14T03:26:59.3898773Z","primaryEndpoints":{"dfs":"https://privatepreviewbilledge.dfs.core.windows.net/","web":"https://privatepreviewbilledge.z13.web.core.windows.net/","blob":"https://privatepreviewbilledge.blob.core.windows.net/","queue":"https://privatepreviewbilledge.queue.core.windows.net/","table":"https://privatepreviewbilledge.table.core.windows.net/","file":"https://privatepreviewbilledge.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://privatepreviewbilledge-secondary.dfs.core.windows.net/","web":"https://privatepreviewbilledge-secondary.z13.web.core.windows.net/","blob":"https://privatepreviewbilledge-secondary.blob.core.windows.net/","queue":"https://privatepreviewbilledge-secondary.queue.core.windows.net/","table":"https://privatepreviewbilledge-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Storage/storageAccounts/raharrideviceupdates","name":"raharrideviceupdates","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-09-10T21:56:24.8723906Z","key2":"2021-09-10T21:56:24.8723906Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T21:56:24.8723906Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-09-10T21:56:24.8723906Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-09-10T21:56:24.7786183Z","primaryEndpoints":{"blob":"https://raharrideviceupdates.blob.core.windows.net/","queue":"https://raharrideviceupdates.queue.core.windows.net/","table":"https://raharrideviceupdates.table.core.windows.net/","file":"https://raharrideviceupdates.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Storage/storageAccounts/ridotempdata","name":"ridotempdata","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-19T21:49:24.0720856Z","key2":"2021-04-19T21:49:24.0720856Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-19T21:49:24.0720856Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-19T21:49:24.0720856Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-19T21:49:23.9627356Z","primaryEndpoints":{"dfs":"https://ridotempdata.dfs.core.windows.net/","web":"https://ridotempdata.z13.web.core.windows.net/","blob":"https://ridotempdata.blob.core.windows.net/","queue":"https://ridotempdata.queue.core.windows.net/","table":"https://ridotempdata.table.core.windows.net/","file":"https://ridotempdata.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://ridotempdata-secondary.dfs.core.windows.net/","web":"https://ridotempdata-secondary.z13.web.core.windows.net/","blob":"https://ridotempdata-secondary.blob.core.windows.net/","queue":"https://ridotempdata-secondary.queue.core.windows.net/","table":"https://ridotempdata-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslerstorage","name":"rkesslerstorage","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-31T04:38:45.5328731Z","key2":"2021-08-31T04:38:45.5328731Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T04:38:45.5328731Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T04:38:45.5328731Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-31T04:38:45.4234853Z","primaryEndpoints":{"dfs":"https://rkesslerstorage.dfs.core.windows.net/","web":"https://rkesslerstorage.z13.web.core.windows.net/","blob":"https://rkesslerstorage.blob.core.windows.net/","queue":"https://rkesslerstorage.queue.core.windows.net/","table":"https://rkesslerstorage.table.core.windows.net/","file":"https://rkesslerstorage.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://rkesslerstorage-secondary.dfs.core.windows.net/","web":"https://rkesslerstorage-secondary.z13.web.core.windows.net/","blob":"https://rkesslerstorage-secondary.blob.core.windows.net/","queue":"https://rkesslerstorage-secondary.queue.core.windows.net/","table":"https://rkesslerstorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/vilitstore","name":"vilitstore","type":"Microsoft.Storage/storageAccounts","location":"eastus","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-23T20:09:36.4369560Z","key2":"2021-08-23T20:09:36.4369560Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T20:09:36.4369560Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-23T20:09:36.4369560Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-08-23T20:09:36.3275868Z","primaryEndpoints":{"dfs":"https://vilitstore.dfs.core.windows.net/","web":"https://vilitstore.z13.web.core.windows.net/","blob":"https://vilitstore.blob.core.windows.net/","queue":"https://vilitstore.queue.core.windows.net/","table":"https://vilitstore.table.core.windows.net/","file":"https://vilitstore.file.core.windows.net/"},"primaryLocation":"eastus","statusOfPrimary":"available","secondaryLocation":"westus","statusOfSecondary":"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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"Logging, + Metrics, 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.rglpb44c77ofpbl2aznugwkyurgp4bganvrh364eeuwcyvajlpagbqsbjb7rd7fukrf/providers/Microsoft.Storage/storageAccounts/clitest2tvnubwb6ky2be36j","name":"clitest2tvnubwb6ky2be36j","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:03:19.3282229Z","key2":"2022-10-14T20:03:19.3282229Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:03:19.3438435Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:03:19.3438435Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:03:19.2344681Z","primaryEndpoints":{"blob":"https://clitest2tvnubwb6ky2be36j.blob.core.windows.net/","queue":"https://clitest2tvnubwb6ky2be36j.queue.core.windows.net/","table":"https://clitest2tvnubwb6ky2be36j.table.core.windows.net/","file":"https://clitest2tvnubwb6ky2be36j.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.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Storage/storageAccounts/clitest5qkwfloklp7b2g7ng","name":"clitest5qkwfloklp7b2g7ng","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:04:21.9696331Z","key2":"2022-10-14T20:04:21.9696331Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:04:21.9852777Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:04:21.9852777Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:04:21.8758874Z","primaryEndpoints":{"blob":"https://clitest5qkwfloklp7b2g7ng.blob.core.windows.net/","queue":"https://clitest5qkwfloklp7b2g7ng.queue.core.windows.net/","table":"https://clitest5qkwfloklp7b2g7ng.table.core.windows.net/","file":"https://clitest5qkwfloklp7b2g7ng.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":{"keyCreationTime":{"key1":"2022-10-19T21:27:32.8904532Z","key2":"2022-10-19T21:27:32.8904532Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-19T21:27:32.9060761Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-19T21:27:32.9060761Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-19T21:27:32.7971684Z","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.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Storage/storageAccounts/clitesteklqzuyizgeeenn75","name":"clitesteklqzuyizgeeenn75","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:48:08.1733907Z","key2":"2022-10-18T18:48:08.1733907Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.1733907Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.1733907Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:48:08.0640087Z","primaryEndpoints":{"blob":"https://clitesteklqzuyizgeeenn75.blob.core.windows.net/","queue":"https://clitesteklqzuyizgeeenn75.queue.core.windows.net/","table":"https://clitesteklqzuyizgeeenn75.table.core.windows.net/","file":"https://clitesteklqzuyizgeeenn75.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.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Storage/storageAccounts/clitestigva6doxivhvo5mqm","name":"clitestigva6doxivhvo5mqm","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:30:07.9546953Z","key2":"2022-10-18T18:30:07.9546953Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:07.9546953Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:07.9546953Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:30:07.8453184Z","primaryEndpoints":{"blob":"https://clitestigva6doxivhvo5mqm.blob.core.windows.net/","queue":"https://clitestigva6doxivhvo5mqm.queue.core.windows.net/","table":"https://clitestigva6doxivhvo5mqm.table.core.windows.net/","file":"https://clitestigva6doxivhvo5mqm.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.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Storage/storageAccounts/clitestmmxqd6sx3bmeg75oa","name":"clitestmmxqd6sx3bmeg75oa","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:31:14.4418256Z","key2":"2022-10-14T20:31:14.4418256Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.4574466Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.4574466Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:31:14.3324427Z","primaryEndpoints":{"blob":"https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/","queue":"https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/","table":"https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/","file":"https://clitestmmxqd6sx3bmeg75oa.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.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Storage/storageAccounts/clitestwbufuo762kwfy7o53","name":"clitestwbufuo762kwfy7o53","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:48:08.7846725Z","key2":"2022-10-18T18:48:08.7846725Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.7983950Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:48:08.7983950Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:48:08.6577638Z","primaryEndpoints":{"blob":"https://clitestwbufuo762kwfy7o53.blob.core.windows.net/","queue":"https://clitestwbufuo762kwfy7o53.queue.core.windows.net/","table":"https://clitestwbufuo762kwfy7o53.table.core.windows.net/","file":"https://clitestwbufuo762kwfy7o53.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.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Storage/storageAccounts/clitestx5vvad2p4lj422dtt","name":"clitestx5vvad2p4lj422dtt","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:31:14.2074274Z","key2":"2022-10-14T20:31:14.2074274Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.2230642Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:31:14.2230642Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:31:14.0981110Z","primaryEndpoints":{"blob":"https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/","queue":"https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/","table":"https://clitestx5vvad2p4lj422dtt.table.core.windows.net/","file":"https://clitestx5vvad2p4lj422dtt.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.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Storage/storageAccounts/clitestxr6xomz7iii3qglyv","name":"clitestxr6xomz7iii3qglyv","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-14T20:58:57.6340465Z","key2":"2022-10-14T20:58:57.6340465Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:58:57.6340465Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-14T20:58:57.6340465Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-14T20:58:57.5246374Z","primaryEndpoints":{"blob":"https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/","queue":"https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/","table":"https://clitestxr6xomz7iii3qglyv.table.core.windows.net/","file":"https://clitestxr6xomz7iii3qglyv.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.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Storage/storageAccounts/clitestzzaeirfu6bbwfj4ja","name":"clitestzzaeirfu6bbwfj4ja","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T18:30:08.1422082Z","key2":"2022-10-18T18:30:08.1422082Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:08.1578272Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T18:30:08.1578272Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T18:30:08.0484744Z","primaryEndpoints":{"blob":"https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/","queue":"https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/","table":"https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/","file":"https://clitestzzaeirfu6bbwfj4ja.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/cs4100300009acbc8c3","name":"cs4100300009acbc8c3","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-02-09T18:44:35.6761185Z","key2":"2022-02-09T18:44:35.6761185Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-09T18:44:35.6761185Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-02-09T18:44:35.6761185Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-02-09T18:44:35.5823418Z","primaryEndpoints":{"dfs":"https://cs4100300009acbc8c3.dfs.core.windows.net/","web":"https://cs4100300009acbc8c3.z22.web.core.windows.net/","blob":"https://cs4100300009acbc8c3.blob.core.windows.net/","queue":"https://cs4100300009acbc8c3.queue.core.windows.net/","table":"https://cs4100300009acbc8c3.table.core.windows.net/","file":"https://cs4100300009acbc8c3.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/cs41003200066a7dd52","name":"cs41003200066a7dd52","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-18T17:36:45.6533903Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-18T17:36:45.6533903Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-18T17:36:45.5752594Z","primaryEndpoints":{"dfs":"https://cs41003200066a7dd52.dfs.core.windows.net/","web":"https://cs41003200066a7dd52.z22.web.core.windows.net/","blob":"https://cs41003200066a7dd52.blob.core.windows.net/","queue":"https://cs41003200066a7dd52.queue.core.windows.net/","table":"https://cs41003200066a7dd52.table.core.windows.net/","file":"https://cs41003200066a7dd52.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/cs41003200200848f41","name":"cs41003200200848f41","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-06-08T18:15:57.8153697Z","key2":"2022-06-08T18:15:57.8153697Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-08T18:15:57.8153697Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-08T18:15:57.8153697Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-06-08T18:15:57.7216712Z","primaryEndpoints":{"dfs":"https://cs41003200200848f41.dfs.core.windows.net/","web":"https://cs41003200200848f41.z22.web.core.windows.net/","blob":"https://cs41003200200848f41.blob.core.windows.net/","queue":"https://cs41003200200848f41.queue.core.windows.net/","table":"https://cs41003200200848f41.table.core.windows.net/","file":"https://cs41003200200848f41.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/cs410033fff96467dc6","name":"cs410033fff96467dc6","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2021-12-13T17:13:30.0923471Z","key2":"2021-12-13T17:13:30.0923471Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-13T17:13:30.0923471Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-13T17:13:30.0923471Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-12-13T17:13:29.9986006Z","primaryEndpoints":{"dfs":"https://cs410033fff96467dc6.dfs.core.windows.net/","web":"https://cs410033fff96467dc6.z22.web.core.windows.net/","blob":"https://cs410033fff96467dc6.blob.core.windows.net/","queue":"https://cs410033fff96467dc6.queue.core.windows.net/","table":"https://cs410033fff96467dc6.table.core.windows.net/","file":"https://cs410033fff96467dc6.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/cs410037ffe801b4af4","name":"cs410037ffe801b4af4","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T12:02:15.3272698Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T12:02:15.3272698Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-20T12:02:15.2647454Z","primaryEndpoints":{"dfs":"https://cs410037ffe801b4af4.dfs.core.windows.net/","web":"https://cs410037ffe801b4af4.z22.web.core.windows.net/","blob":"https://cs410037ffe801b4af4.blob.core.windows.net/","queue":"https://cs410037ffe801b4af4.queue.core.windows.net/","table":"https://cs410037ffe801b4af4.table.core.windows.net/","file":"https://cs410037ffe801b4af4.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":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"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_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iotqrcodes/providers/Microsoft.Storage/storageAccounts/iotqrcodes","name":"iotqrcodes","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-07-29T18:48:51.7888406Z","key2":"2021-07-29T18:48:51.7888406Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T18:48:51.7888406Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-07-29T18:48:51.7888406Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-07-29T18:48:51.7263422Z","primaryEndpoints":{"dfs":"https://iotqrcodes.dfs.core.windows.net/","web":"https://iotqrcodes.z22.web.core.windows.net/","blob":"https://iotqrcodes.blob.core.windows.net/","queue":"https://iotqrcodes.queue.core.windows.net/","table":"https://iotqrcodes.table.core.windows.net/","file":"https://iotqrcodes.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-southcentralus/providers/Microsoft.Storage/storageAccounts/cs7100320004055e7df","name":"cs7100320004055e7df","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{"ms-resource-usage":"azure-cloud-shell"},"properties":{"keyCreationTime":{"key1":"2022-08-25T17:36:35.3733486Z","key2":"2022-08-25T17:36:35.3733486Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T17:36:35.7639780Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-08-25T17:36:35.7639780Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-08-25T17:36:35.2795833Z","primaryEndpoints":{"dfs":"https://cs7100320004055e7df.dfs.core.windows.net/","web":"https://cs7100320004055e7df.z21.web.core.windows.net/","blob":"https://cs7100320004055e7df.blob.core.windows.net/","queue":"https://cs7100320004055e7df.queue.core.windows.net/","table":"https://cs7100320004055e7df.table.core.windows.net/","file":"https://cs7100320004055e7df.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Storage/storageAccounts/iliesrgbf29","name":"iliesrgbf29","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-06-21T18:06:13.8315498Z","key2":"2022-06-21T18:06:13.8315498Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-21T18:06:13.8315498Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-06-21T18:06:13.8315498Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-06-21T18:06:13.7379857Z","primaryEndpoints":{"blob":"https://iliesrgbf29.blob.core.windows.net/","queue":"https://iliesrgbf29.queue.core.windows.net/","table":"https://iliesrgbf29.table.core.windows.net/","file":"https://iliesrgbf29.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Storage/storageAccounts/vilit8722","name":"vilit8722","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-11T18:59:07.4717431Z","key2":"2022-05-11T18:59:07.4717431Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T18:59:07.4717431Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-11T18:59:07.4717431Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-11T18:59:07.3623120Z","primaryEndpoints":{"blob":"https://vilit8722.blob.core.windows.net/","queue":"https://vilit8722.queue.core.windows.net/","table":"https://vilit8722.table.core.windows.net/","file":"https://vilit8722.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Storage/storageAccounts/vilitehtoazmon8c23","name":"vilitehtoazmon8c23","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-03-31T17:19:46.9319689Z","key2":"2022-03-31T17:19:46.9319689Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T17:19:46.9319689Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-03-31T17:19:46.9319689Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-03-31T17:19:46.8225518Z","primaryEndpoints":{"blob":"https://vilitehtoazmon8c23.blob.core.windows.net/","queue":"https://vilitehtoazmon8c23.queue.core.windows.net/","table":"https://vilitehtoazmon8c23.table.core.windows.net/","file":"https://vilitehtoazmon8c23.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dt_test/providers/Microsoft.Storage/storageAccounts/wqklkwjkjwejkwe","name":"wqklkwjkjwejkwe","type":"Microsoft.Storage/storageAccounts","location":"centralus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-03-16T15:47:52.5520552Z","key2":"2021-03-16T15:47:52.5520552Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-16T15:47:52.5520552Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-16T15:47:52.5520552Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-16T15:47:52.4739156Z","primaryEndpoints":{"dfs":"https://wqklkwjkjwejkwe.dfs.core.windows.net/","web":"https://wqklkwjkjwejkwe.z19.web.core.windows.net/","blob":"https://wqklkwjkjwejkwe.blob.core.windows.net/","queue":"https://wqklkwjkjwejkwe.queue.core.windows.net/","table":"https://wqklkwjkjwejkwe.table.core.windows.net/","file":"https://wqklkwjkjwejkwe.file.core.windows.net/"},"primaryLocation":"centralus","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Storage/storageAccounts/aducli","name":"aducli","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"dnsEndpointType":"Standard","allowedCopyScope":"AAD","defaultToOAuthAuthentication":true,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-07-21T18:11:40.7795178Z","key2":"2022-07-21T18:11:40.7795178Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T18:11:40.7951256Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-07-21T18:11:40.7951256Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-07-21T18:11:40.6857415Z","primaryEndpoints":{"dfs":"https://aducli.dfs.core.windows.net/","web":"https://aducli.z5.web.core.windows.net/","blob":"https://aducli.blob.core.windows.net/","queue":"https://aducli.queue.core.windows.net/","table":"https://aducli.table.core.windows.net/","file":"https://aducli.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://aducli-secondary.dfs.core.windows.net/","web":"https://aducli-secondary.z5.web.core.windows.net/","blob":"https://aducli-secondary.blob.core.windows.net/","queue":"https://aducli-secondary.queue.core.windows.net/","table":"https://aducli-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Storage/storageAccounts/azcliintteststorage","name":"azcliintteststorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-18T00:47:50.5253938Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-07-18T00:47:50.5253938Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-07-18T00:47:50.4473020Z","primaryEndpoints":{"dfs":"https://azcliintteststorage.dfs.core.windows.net/","web":"https://azcliintteststorage.z5.web.core.windows.net/","blob":"https://azcliintteststorage.blob.core.windows.net/","queue":"https://azcliintteststorage.queue.core.windows.net/","table":"https://azcliintteststorage.table.core.windows.net/","file":"https://azcliintteststorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://azcliintteststorage-secondary.dfs.core.windows.net/","web":"https://azcliintteststorage-secondary.z5.web.core.windows.net/","blob":"https://azcliintteststorage-secondary.blob.core.windows.net/","queue":"https://azcliintteststorage-secondary.queue.core.windows.net/","table":"https://azcliintteststorage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/eventualC/providers/Microsoft.Storage/storageAccounts/dmrstore","name":"dmrstore","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T01:26:42.2484427Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-11-20T01:26:42.2484427Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2020-11-20T01:26:42.1546871Z","primaryEndpoints":{"dfs":"https://dmrstore.dfs.core.windows.net/","web":"https://dmrstore.z5.web.core.windows.net/","blob":"https://dmrstore.blob.core.windows.net/","queue":"https://dmrstore.queue.core.windows.net/","table":"https://dmrstore.table.core.windows.net/","file":"https://dmrstore.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available"}},{"sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rkiotstorage2","name":"rkiotstorage2","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T23:15:17.7346844Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T23:15:17.7346844Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-23T23:15:17.6409336Z","primaryEndpoints":{"dfs":"https://rkiotstorage2.dfs.core.windows.net/","web":"https://rkiotstorage2.z5.web.core.windows.net/","blob":"https://rkiotstorage2.blob.core.windows.net/","queue":"https://rkiotstorage2.queue.core.windows.net/","table":"https://rkiotstorage2.table.core.windows.net/","file":"https://rkiotstorage2.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"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":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"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"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/rktsistorage","name":"rktsistorage","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2021-04-05T17:19:34.7436222Z","key2":"2021-04-05T17:19:34.7436222Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"isHnsEnabled":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":false,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-05T17:19:34.7592460Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-05T17:19:34.7592460Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-04-05T17:19:34.6498962Z","primaryEndpoints":{"dfs":"https://rktsistorage.dfs.core.windows.net/","web":"https://rktsistorage.z5.web.core.windows.net/","blob":"https://rktsistorage.blob.core.windows.net/","queue":"https://rktsistorage.queue.core.windows.net/","table":"https://rktsistorage.table.core.windows.net/","file":"https://rktsistorage.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/storageaccountrkiot8c13","name":"storageaccountrkiot8c13","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-16T22:15:10.5759611Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2020-09-16T22:15:10.5759611Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2020-09-16T22:15:10.4821881Z","primaryEndpoints":{"blob":"https://storageaccountrkiot8c13.blob.core.windows.net/","queue":"https://storageaccountrkiot8c13.queue.core.windows.net/","table":"https://storageaccountrkiot8c13.table.core.windows.net/","file":"https://storageaccountrkiot8c13.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/storageaccountrkiotb9e5","name":"storageaccountrkiotb9e5","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T19:30:15.3804746Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-23T19:30:15.3804746Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-02-23T19:30:15.3023373Z","primaryEndpoints":{"blob":"https://storageaccountrkiotb9e5.blob.core.windows.net/","queue":"https://storageaccountrkiotb9e5.queue.core.windows.net/","table":"https://storageaccountrkiotb9e5.table.core.windows.net/","file":"https://storageaccountrkiotb9e5.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available"}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Storage/storageAccounts/testhubdep539eb40c15e043","name":"testhubdep539eb40c15e043","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T22:14:26.9299852Z","key2":"2022-10-18T22:14:26.9299852Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T22:14:27.4143557Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T22:14:27.4143557Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-18T22:14:26.8205787Z","primaryEndpoints":{"dfs":"https://testhubdep539eb40c15e043.dfs.core.windows.net/","web":"https://testhubdep539eb40c15e043.z5.web.core.windows.net/","blob":"https://testhubdep539eb40c15e043.blob.core.windows.net/","queue":"https://testhubdep539eb40c15e043.queue.core.windows.net/","table":"https://testhubdep539eb40c15e043.table.core.windows.net/","file":"https://testhubdep539eb40c15e043.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testhubdep539eb40c15e043-secondary.dfs.core.windows.net/","web":"https://testhubdep539eb40c15e043-secondary.z5.web.core.windows.net/","blob":"https://testhubdep539eb40c15e043-secondary.blob.core.windows.net/","queue":"https://testhubdep539eb40c15e043-secondary.queue.core.windows.net/","table":"https://testhubdep539eb40c15e043-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Storage/storageAccounts/testhubdep652299afa13d49","name":"testhubdep652299afa13d49","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T22:10:44.1629746Z","key2":"2022-10-18T22:10:44.1629746Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T22:10:44.6161898Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T22:10:44.6161898Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-18T22:10:44.0536250Z","primaryEndpoints":{"dfs":"https://testhubdep652299afa13d49.dfs.core.windows.net/","web":"https://testhubdep652299afa13d49.z5.web.core.windows.net/","blob":"https://testhubdep652299afa13d49.blob.core.windows.net/","queue":"https://testhubdep652299afa13d49.queue.core.windows.net/","table":"https://testhubdep652299afa13d49.table.core.windows.net/","file":"https://testhubdep652299afa13d49.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testhubdep652299afa13d49-secondary.dfs.core.windows.net/","web":"https://testhubdep652299afa13d49-secondary.z5.web.core.windows.net/","blob":"https://testhubdep652299afa13d49-secondary.blob.core.windows.net/","queue":"https://testhubdep652299afa13d49-secondary.queue.core.windows.net/","table":"https://testhubdep652299afa13d49-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Storage/storageAccounts/testhubdep84d15330228a4a","name":"testhubdep84d15330228a4a","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T23:08:30.3888857Z","key2":"2022-10-18T23:08:30.3888857Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T23:08:30.6545355Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T23:08:30.6545355Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-18T23:08:30.2795366Z","primaryEndpoints":{"dfs":"https://testhubdep84d15330228a4a.dfs.core.windows.net/","web":"https://testhubdep84d15330228a4a.z5.web.core.windows.net/","blob":"https://testhubdep84d15330228a4a.blob.core.windows.net/","queue":"https://testhubdep84d15330228a4a.queue.core.windows.net/","table":"https://testhubdep84d15330228a4a.table.core.windows.net/","file":"https://testhubdep84d15330228a4a.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testhubdep84d15330228a4a-secondary.dfs.core.windows.net/","web":"https://testhubdep84d15330228a4a-secondary.z5.web.core.windows.net/","blob":"https://testhubdep84d15330228a4a-secondary.blob.core.windows.net/","queue":"https://testhubdep84d15330228a4a-secondary.queue.core.windows.net/","table":"https://testhubdep84d15330228a4a-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Storage/storageAccounts/testhubdepdb8f8c4fb78243","name":"testhubdepdb8f8c4fb78243","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":"2022-10-18T23:11:24.6243565Z","key2":"2022-10-18T23:11:24.6243565Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":false,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T23:11:24.7962286Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T23:11:24.7962286Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-10-18T23:11:24.5149866Z","primaryEndpoints":{"dfs":"https://testhubdepdb8f8c4fb78243.dfs.core.windows.net/","web":"https://testhubdepdb8f8c4fb78243.z5.web.core.windows.net/","blob":"https://testhubdepdb8f8c4fb78243.blob.core.windows.net/","queue":"https://testhubdepdb8f8c4fb78243.queue.core.windows.net/","table":"https://testhubdepdb8f8c4fb78243.table.core.windows.net/","file":"https://testhubdepdb8f8c4fb78243.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testhubdepdb8f8c4fb78243-secondary.dfs.core.windows.net/","web":"https://testhubdepdb8f8c4fb78243-secondary.z5.web.core.windows.net/","blob":"https://testhubdepdb8f8c4fb78243-secondary.blob.core.windows.net/","queue":"https://testhubdepdb8f8c4fb78243-secondary.queue.core.windows.net/","table":"https://testhubdepdb8f8c4fb78243-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Storage/storageAccounts/testrevocation","name":"testrevocation","type":"Microsoft.Storage/storageAccounts","location":"westus2","tags":{},"properties":{"keyCreationTime":{"key1":null,"key2":null},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-10T19:00:22.0329798Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-02-10T19:00:22.0329798Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-02-10T19:00:21.9705172Z","primaryEndpoints":{"dfs":"https://testrevocation.dfs.core.windows.net/","web":"https://testrevocation.z5.web.core.windows.net/","blob":"https://testrevocation.blob.core.windows.net/","queue":"https://testrevocation.queue.core.windows.net/","table":"https://testrevocation.table.core.windows.net/","file":"https://testrevocation.file.core.windows.net/"},"primaryLocation":"westus2","statusOfPrimary":"available","secondaryLocation":"westcentralus","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://testrevocation-secondary.dfs.core.windows.net/","web":"https://testrevocation-secondary.z5.web.core.windows.net/","blob":"https://testrevocation-secondary.blob.core.windows.net/","queue":"https://testrevocation-secondary.queue.core.windows.net/","table":"https://testrevocation-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslereasteaup2storage","name":"rkesslereasteaup2storage","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-10-28T16:38:28.5298643Z","key2":"2021-10-28T16:38:28.5298643Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T16:38:28.5298643Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-10-28T16:38:28.5298643Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-10-28T16:38:28.4517312Z","primaryEndpoints":{"dfs":"https://rkesslereasteaup2storage.dfs.core.windows.net/","web":"https://rkesslereasteaup2storage.z3.web.core.windows.net/","blob":"https://rkesslereasteaup2storage.blob.core.windows.net/","queue":"https://rkesslereasteaup2storage.queue.core.windows.net/","table":"https://rkesslereasteaup2storage.table.core.windows.net/","file":"https://rkesslereasteaup2storage.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"dfs":"https://rkesslereasteaup2storage-secondary.dfs.core.windows.net/","web":"https://rkesslereasteaup2storage-secondary.z3.web.core.windows.net/","blob":"https://rkesslereasteaup2storage-secondary.blob.core.windows.net/","queue":"https://rkesslereasteaup2storage-secondary.queue.core.windows.net/","table":"https://rkesslereasteaup2storage-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_RAGRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Storage/storageAccounts/rkesslerstoragev1","name":"rkesslerstoragev1","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"keyCreationTime":{"key1":"2021-08-31T15:39:41.4036635Z","key2":"2021-08-31T15:39:41.4036635Z"},"allowCrossTenantReplication":false,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T15:39:41.4193120Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-08-31T15:39:41.4193120Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-08-31T15:39:41.3411838Z","primaryEndpoints":{"blob":"https://rkesslerstoragev1.blob.core.windows.net/","queue":"https://rkesslerstoragev1.queue.core.windows.net/","table":"https://rkesslerstoragev1.table.core.windows.net/","file":"https://rkesslerstoragev1.file.core.windows.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available","secondaryLocation":"centraluseuap","statusOfSecondary":"available","secondaryEndpoints":{"blob":"https://rkesslerstoragev1-secondary.blob.core.windows.net/","queue":"https://rkesslerstoragev1-secondary.queue.core.windows.net/","table":"https://rkesslerstoragev1-secondary.table.core.windows.net/"}}},{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Storage/storageAccounts/jeremyjonesstorage1","name":"jeremyjonesstorage1","type":"Microsoft.Storage/storageAccounts","location":"centraluseuap","tags":{},"properties":{"defaultToOAuthAuthentication":false,"publicNetworkAccess":"Enabled","keyCreationTime":{"key1":"2022-05-31T20:02:55.4385674Z","key2":"2022-05-31T20:02:55.4385674Z"},"allowCrossTenantReplication":true,"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_2","allowBlobPublicAccess":false,"allowSharedKeyAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"requireInfrastructureEncryption":false,"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-31T20:02:55.4385674Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-31T20:02:55.4385674Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2022-05-31T20:02:55.3760966Z","primaryEndpoints":{"dfs":"https://jeremyjonesstorage1.dfs.core.windows.net/","web":"https://jeremyjonesstorage1.z2.web.core.windows.net/","blob":"https://jeremyjonesstorage1.blob.core.windows.net/","queue":"https://jeremyjonesstorage1.queue.core.windows.net/","table":"https://jeremyjonesstorage1.table.core.windows.net/","file":"https://jeremyjonesstorage1.file.core.windows.net/"},"primaryLocation":"centraluseuap","statusOfPrimary":"available"}}]}' headers: cache-control: - no-cache content-length: - - '79996' + - '88107' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 20:59:09 GMT + - Wed, 19 Oct 2022 21:27:53 GMT expires: - '-1' pragma: @@ -40,14 +40,14 @@ interactions: x-content-type-options: - nosniff x-ms-original-request-ids: - - f10a3687-2c7d-4129-b897-42bbd8fb19d2 - - 088889a2-ce45-4285-b055-b6429263e379 - - bed6649e-c3ae-4453-adcf-6ba4eee3db1a - - a79c4734-57c1-4f0f-b05b-94df89a3046c - - c151f573-a0ab-4d15-bbc6-89608173fe08 - - 166e027f-7f1a-4cfd-ae5e-272bc6451f98 - - ad626468-4a32-469c-92ad-4dc732ba251b - - 91d84627-da8a-4a7d-bf34-3a2abaa62e9d + - 52b59b10-b69d-4a23-993f-c5f12be454eb + - adc2d4dd-9ee1-4e66-9625-d985247610e6 + - 77a319f8-caef-446b-8f4e-46e1c7eb46d9 + - 2f9dda60-c229-4fb9-b726-61cf9edb9fbd + - 54210488-94c1-4cb5-a61f-a48363891ce0 + - 6e2628c8-2b13-4008-8761-947e2313a07c + - a21fae60-5570-4ed8-b82e-ff6ce1daa934 + - 2e0c9857-eb44-4dea-9212-49a3bc9d350f status: code: 200 message: OK @@ -72,7 +72,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2022-05-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-10-18T20:58:48.5500485Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-10-18T20:58:48.5500485Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-10-19T21:27:32.8904532Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-10-19T21:27:32.8904532Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json date: - - Tue, 18 Oct 2022 20:59:09 GMT + - Wed, 19 Oct 2022 21:27:53 GMT expires: - '-1' pragma: @@ -119,7 +119,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-storage-blob/12.12.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) x-ms-date: - - Tue, 18 Oct 2022 20:59:09 GMT + - Wed, 19 Oct 2022 21:27:53 GMT x-ms-version: - '2021-06-08' method: PUT @@ -131,11 +131,11 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 20:59:09 GMT + - Wed, 19 Oct 2022 21:27:54 GMT etag: - - '"0x8DAB14B9A99F97E"' + - '"0x8DAB218C899FC97"' last-modified: - - Tue, 18 Oct 2022 20:59:10 GMT + - Wed, 19 Oct 2022 21:27:54 GMT server: - Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -164,7 +164,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2022-05-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2022-10-18T20:58:48.5500485Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-10-18T20:58:48.5500485Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2022-10-19T21:27:32.8904532Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-10-19T21:27:32.8904532Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -173,7 +173,7 @@ interactions: content-type: - application/json date: - - Tue, 18 Oct 2022 20:59:10 GMT + - Wed, 19 Oct 2022 21:27:53 GMT expires: - '-1' pragma: @@ -212,7 +212,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2022-05-01 response: body: - string: '{"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":{"keyCreationTime":{"key1":"2022-10-18T20:58:48.5500485Z","key2":"2022-10-18T20:58:48.5500485Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T20:58:48.5500485Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-18T20:58:48.5500485Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-18T20:58:48.4250778Z","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"}}' + string: '{"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":{"keyCreationTime":{"key1":"2022-10-19T21:27:32.8904532Z","key2":"2022-10-19T21:27:32.8904532Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-19T21:27:32.9060761Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-10-19T21:27:32.9060761Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-10-19T21:27:32.7971684Z","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"}}' headers: cache-control: - no-cache @@ -221,7 +221,7 @@ interactions: content-type: - application/json date: - - Tue, 18 Oct 2022 20:59:10 GMT + - Wed, 19 Oct 2022 21:27:53 GMT expires: - '-1' pragma: @@ -258,7 +258,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-10-18T20:58:43Z"},"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":"2022-10-19T21:27:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -267,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 20:59:10 GMT + - Wed, 19 Oct 2022 21:27:54 GMT expires: - '-1' pragma: @@ -306,16 +306,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/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest14bwo7qr","createdAt":"2022-10-18T20:59:13.573Z","updatedAt":"2022-10-18T20:59:13.573Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1y3a4njj","createdAt":"2022-10-19T21:27:57.72Z","updatedAt":"2022-10-19T21:27:57.72Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '834' + - '832' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 20:59:14 GMT + - Wed, 19 Oct 2022 21:27:58 GMT expires: - '-1' pragma: @@ -358,16 +358,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/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest14bwo7qr","createdAt":"2022-10-18T20:59:13.573Z","updatedAt":"2022-10-18T20:59:13.573Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1y3a4njj","createdAt":"2022-10-19T21:27:57.72Z","updatedAt":"2022-10-19T21:27:57.72Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '834' + - '832' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 20:59:14 GMT + - Wed, 19 Oct 2022 21:27:58 GMT expires: - '-1' pragma: @@ -408,16 +408,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/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest14bwo7qr","createdAt":"2022-10-18T20:59:13.573Z","updatedAt":"2022-10-18T20:59:13.573Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Created","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1y3a4njj","createdAt":"2022-10-19T21:27:57.72Z","updatedAt":"2022-10-19T21:27:57.72Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Activating"}}' headers: cache-control: - no-cache content-length: - - '834' + - '832' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 20:59:44 GMT + - Wed, 19 Oct 2022 21:28:28 GMT expires: - '-1' pragma: @@ -458,16 +458,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/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest14bwo7qr","createdAt":"2022-10-18T20:59:13.573Z","updatedAt":"2022-10-18T21:00:05.897Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1y3a4njj","createdAt":"2022-10-19T21:27:57.72Z","updatedAt":"2022-10-19T21:28:47.57Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '832' + - '830' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:13 GMT + - Wed, 19 Oct 2022 21:28:59 GMT expires: - '-1' pragma: @@ -508,16 +508,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/ehNamespaceiothubfortest1000005","name":"ehNamespaceiothubfortest1000005","type":"Microsoft.EventHub/Namespaces","location":"West - US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest14bwo7qr","createdAt":"2022-10-18T20:59:13.573Z","updatedAt":"2022-10-18T21:00:05.897Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Active"}}' + US 2","tags":{},"properties":{"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"isAutoInflateEnabled":false,"maximumThroughputUnits":0,"kafkaEnabled":true,"provisioningState":"Succeeded","metricId":"a386d5ea-ea90-441a-8263-d816368c84a1:ehnamespaceiothubfortest1y3a4njj","createdAt":"2022-10-19T21:27:57.72Z","updatedAt":"2022-10-19T21:28:47.57Z","serviceBusEndpoint":"https://ehNamespaceiothubfortest1000005.servicebus.windows.net:443/","status":"Active"}}' headers: cache-control: - no-cache content-length: - - '832' + - '830' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:15 GMT + - Wed, 19 Oct 2022 21:28:59 GMT expires: - '-1' pragma: @@ -561,16 +561,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006","name":"eventHubiothubfortest000006","type":"Microsoft.EventHub/namespaces/eventhubs","location":"westus2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2022-10-18T21:00:17.14Z","updatedAt":"2022-10-18T21:00:17.303Z","partitionIds":["0","1","2","3"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006","name":"eventHubiothubfortest000006","type":"Microsoft.EventHub/namespaces/eventhubs","location":"westus2","properties":{"messageRetentionInDays":7,"partitionCount":4,"status":"Active","createdAt":"2022-10-19T21:29:01.717Z","updatedAt":"2022-10-19T21:29:02.023Z","partitionIds":["0","1","2","3"]}}' headers: cache-control: - no-cache content-length: - - '498' + - '499' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:17 GMT + - Wed, 19 Oct 2022 21:29:01 GMT expires: - '-1' pragma: @@ -622,7 +622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:18 GMT + - Wed, 19 Oct 2022 21:29:03 GMT expires: - '-1' pragma: @@ -663,7 +663,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.EventHub/namespaces/ehNamespaceiothubfortest1000005/eventhubs/eventHubiothubfortest000006/authorizationRules/eventHubPolicyiothubfortest/listKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;eventHubiothubfortest000006","primaryKey":"mock_key","secondaryKey":"mock_key","keyName":"eventHubPolicyiothubfortest"}' + string: '{"primaryConnectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;eventHubiothubfortest000006","primaryKey":"mock_key","secondaryKey":"mock_key","keyName":"eventHubPolicyiothubfortest"}' headers: cache-control: - no-cache @@ -672,7 +672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:19 GMT + - Wed, 19 Oct 2022 21:29:04 GMT expires: - '-1' pragma: @@ -711,7 +711,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-10-18T20:58:43Z"},"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":"2022-10-19T21:27:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -720,7 +720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:19 GMT + - Wed, 19 Oct 2022 21:29:04 GMT expires: - '-1' pragma: @@ -766,8 +766,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: dc6bb254-b8a8-4eb4-b0b6-ede4e6fba386, - timestamp: 2022-10-18 21:00:20Z, errorcode: IH400016."}' + please include this correlation identifier: bb249b8b-3cf6-4b6d-bfd1-eaf084356f88, + timestamp: 2022-10-19 21:29:05Z, errorcode: IH400016."}' headers: cache-control: - no-cache @@ -776,7 +776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:20 GMT + - Wed, 19 Oct 2022 21:29:05 GMT expires: - '-1' pragma: @@ -811,7 +811,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-10-18T20:58:43Z"},"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":"2022-10-19T21:27:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -820,7 +820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:20 GMT + - Wed, 19 Oct 2022 21:29:05 GMT expires: - '-1' pragma: @@ -866,8 +866,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: 9a10b904-1636-4a66-9d7a-81b880a01d63, - timestamp: 2022-10-18 21:00:22Z, errorcode: IH400016."}' + please include this correlation identifier: 51500d9a-3003-49e3-b83e-ae3fded2aa42, + timestamp: 2022-10-19 21:29:07Z, errorcode: IH400016."}' headers: cache-control: - no-cache @@ -876,7 +876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:21 GMT + - Wed, 19 Oct 2022 21:29:06 GMT expires: - '-1' pragma: @@ -911,7 +911,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-10-18T20:58:43Z"},"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":"2022-10-19T21:27:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -920,7 +920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:22 GMT + - Wed, 19 Oct 2022 21:29:07 GMT expires: - '-1' pragma: @@ -966,8 +966,8 @@ interactions: body: string: '{"code":400089,"httpStatusCode":"BadRequest","message":"2.5 is not a valid MinTlsVersion value. If you contact a support representative please - include this correlation identifier: 869d78b0-35fb-4c01-a369-a355d9f8063f, - timestamp: 2022-10-18 21:00:23Z, errorcode: IH400089."}' + include this correlation identifier: 527c5d6b-3d62-4a08-80ba-69011951b547, + timestamp: 2022-10-19 21:29:08Z, errorcode: IH400089."}' headers: cache-control: - no-cache @@ -976,7 +976,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:23 GMT + - Wed, 19 Oct 2022 21:29:07 GMT expires: - '-1' pragma: @@ -1013,7 +1013,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-10-18T20:58:43Z"},"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":"2022-10-19T21:27:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1022,7 +1022,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:23 GMT + - Wed, 19 Oct 2022 21:29:07 GMT expires: - '-1' pragma: @@ -1071,7 +1071,7 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","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":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmEzMTc3YjUtMzk0Mi00NzUzLTljNTgtNDQ1YzM4MDBiZTQ4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -1079,7 +1079,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:27 GMT + - Wed, 19 Oct 2022 21:29:12 GMT expires: - '-1' pragma: @@ -1113,7 +1113,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmEzMTc3YjUtMzk0Mi00NzUzLTljNTgtNDQ1YzM4MDBiZTQ4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -1125,7 +1125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:27 GMT + - Wed, 19 Oct 2022 21:29:12 GMT expires: - '-1' pragma: @@ -1161,7 +1161,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmEzMTc3YjUtMzk0Mi00NzUzLTljNTgtNDQ1YzM4MDBiZTQ4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -1173,7 +1173,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:00:58 GMT + - Wed, 19 Oct 2022 21:29:42 GMT expires: - '-1' pragma: @@ -1209,7 +1209,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmEzMTc3YjUtMzk0Mi00NzUzLTljNTgtNDQ1YzM4MDBiZTQ4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -1221,7 +1221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:01:28 GMT + - Wed, 19 Oct 2022 21:30:13 GMT expires: - '-1' pragma: @@ -1257,7 +1257,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmEzMTc3YjUtMzk0Mi00NzUzLTljNTgtNDQ1YzM4MDBiZTQ4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -1269,7 +1269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:01:58 GMT + - Wed, 19 Oct 2022 21:30:42 GMT expires: - '-1' pragma: @@ -1305,7 +1305,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmEzMTc3YjUtMzk0Mi00NzUzLTljNTgtNDQ1YzM4MDBiZTQ4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -1317,7 +1317,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:02:28 GMT + - Wed, 19 Oct 2022 21:31:12 GMT expires: - '-1' pragma: @@ -1353,7 +1353,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzQ2MWM4OTctYzI3NS00MzMyLWI5M2QtNDI3ZDFiYjRlZmU5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmEzMTc3YjUtMzk0Mi00NzUzLTljNTgtNDQ1YzM4MDBiZTQ4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1365,7 +1365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:02:58 GMT + - Wed, 19 Oct 2022 21:31:42 GMT expires: - '-1' pragma: @@ -1404,17 +1404,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSQXQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '1728' + - '1733' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:02:58 GMT + - Wed, 19 Oct 2022 21:31:43 GMT expires: - '-1' pragma: @@ -1451,7 +1451,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -1481,7 +1481,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -1489,8 +1490,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -1502,7 +1503,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -1525,7 +1526,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -1541,14 +1542,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -1570,8 +1572,18 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSQXQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -1588,11 +1600,11 @@ interactions: cache-control: - no-cache content-length: - - '178185' + - '194363' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:03:06 GMT + - Wed, 19 Oct 2022 21:31:55 GMT expires: - '-1' pragma: @@ -1648,7 +1660,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:03:06 GMT + - Wed, 19 Oct 2022 21:31:56 GMT expires: - '-1' pragma: @@ -1687,7 +1699,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -1717,7 +1729,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -1725,8 +1738,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -1738,7 +1751,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -1761,7 +1774,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -1777,14 +1790,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -1806,8 +1820,18 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSQXQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -1824,11 +1848,11 @@ interactions: cache-control: - no-cache content-length: - - '178185' + - '194363' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:03:13 GMT + - Wed, 19 Oct 2022 21:32:03 GMT expires: - '-1' pragma: @@ -1884,7 +1908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:03:13 GMT + - Wed, 19 Oct 2022 21:31:59 GMT expires: - '-1' pragma: @@ -1923,7 +1947,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -1953,7 +1977,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -1961,8 +1986,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -1974,7 +1999,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -1997,7 +2022,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -2013,14 +2038,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -2042,8 +2068,18 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSQXQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -2060,11 +2096,11 @@ interactions: cache-control: - no-cache content-length: - - '178185' + - '194363' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:03:20 GMT + - Wed, 19 Oct 2022 21:32:06 GMT expires: - '-1' pragma: @@ -2120,7 +2156,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:03:21 GMT + - Wed, 19 Oct 2022 21:32:07 GMT expires: - '-1' pragma: @@ -2159,7 +2195,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -2189,7 +2225,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -2197,8 +2234,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -2210,7 +2247,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -2233,7 +2270,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -2249,14 +2286,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -2278,8 +2316,18 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSQXQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -2296,11 +2344,11 @@ interactions: cache-control: - no-cache content-length: - - '178185' + - '194363' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:03:28 GMT + - Wed, 19 Oct 2022 21:32:14 GMT expires: - '-1' pragma: @@ -2344,7 +2392,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -2374,7 +2422,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -2382,8 +2431,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -2395,7 +2444,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -2418,7 +2467,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -2434,14 +2483,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -2463,8 +2513,18 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSQXQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -2481,11 +2541,11 @@ interactions: cache-control: - no-cache content-length: - - '178185' + - '194363' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:03:35 GMT + - Wed, 19 Oct 2022 21:32:22 GMT expires: - '-1' pragma: @@ -2529,7 +2589,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -2559,7 +2619,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -2567,8 +2628,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -2580,7 +2641,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -2603,7 +2664,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -2619,14 +2680,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -2648,8 +2710,18 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSQXQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT20H","maxDeliveryCount":79}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":89,"defaultTtlAsIso8601":"PT23H","feedback":{"lockDurationAsIso8601":"PT35S","ttlAsIso8601":"P1DT5H","maxDeliveryCount":40}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -2666,11 +2738,11 @@ interactions: cache-control: - no-cache content-length: - - '178185' + - '194363' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:03:42 GMT + - Wed, 19 Oct 2022 21:32:29 GMT expires: - '-1' pragma: @@ -2696,7 +2768,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO9yTs=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSQXQ=", "properties": {"allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], @@ -2724,7 +2796,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO9yTs=''}' + - '{''IF-MATCH'': ''AAAADHPSQXQ=''}' ParameterSetName: - -n --fnd --rd --ct --cdd --ft --fld --fd --fn --fnt --fst --fcs --fc --tags User-Agent: @@ -2733,15 +2805,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9yTs=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"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==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSQXQ=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"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==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODljOGRiMmUtZjRhZS00MWJkLTk2MjUtMzRlYWM0NWY3NmYyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNGY2Zjg3M2QtN2IxZS00NDZjLWI3NTUtMGNjNmNhMjVkZjg3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -2749,7 +2821,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:03:45 GMT + - Wed, 19 Oct 2022 21:32:32 GMT expires: - '-1' pragma: @@ -2781,7 +2853,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODljOGRiMmUtZjRhZS00MWJkLTk2MjUtMzRlYWM0NWY3NmYyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNGY2Zjg3M2QtN2IxZS00NDZjLWI3NTUtMGNjNmNhMjVkZjg3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -2793,7 +2865,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:03:45 GMT + - Wed, 19 Oct 2022 21:32:33 GMT expires: - '-1' pragma: @@ -2827,7 +2899,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODljOGRiMmUtZjRhZS00MWJkLTk2MjUtMzRlYWM0NWY3NmYyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNGY2Zjg3M2QtN2IxZS00NDZjLWI3NTUtMGNjNmNhMjVkZjg3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2839,7 +2911,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:15 GMT + - Wed, 19 Oct 2022 21:33:03 GMT expires: - '-1' pragma: @@ -2876,17 +2948,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO90aM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSS8c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2108' + - '2113' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:16 GMT + - Wed, 19 Oct 2022 21:33:03 GMT expires: - '-1' pragma: @@ -2930,7 +3002,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:04:16 GMT + - Wed, 19 Oct 2022 21:33:05 GMT expires: - '-1' pragma: @@ -2975,7 +3047,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:17 GMT + - Wed, 19 Oct 2022 21:33:05 GMT expires: - '-1' pragma: @@ -3014,17 +3086,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO90aM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSS8c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2108' + - '2113' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:18 GMT + - Wed, 19 Oct 2022 21:33:06 GMT expires: - '-1' pragma: @@ -3068,7 +3140,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:04:18 GMT + - Wed, 19 Oct 2022 21:33:06 GMT expires: - '-1' pragma: @@ -3113,7 +3185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:18 GMT + - Wed, 19 Oct 2022 21:33:07 GMT expires: - '-1' pragma: @@ -3152,17 +3224,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO90aM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSS8c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2108' + - '2113' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:19 GMT + - Wed, 19 Oct 2022 21:33:07 GMT expires: - '-1' pragma: @@ -3206,7 +3278,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:04:19 GMT + - Wed, 19 Oct 2022 21:33:08 GMT expires: - '-1' pragma: @@ -3251,7 +3323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:20 GMT + - Wed, 19 Oct 2022 21:33:08 GMT expires: - '-1' pragma: @@ -3290,17 +3362,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO90aM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSS8c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2108' + - '2113' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:21 GMT + - Wed, 19 Oct 2022 21:33:09 GMT expires: - '-1' pragma: @@ -3344,7 +3416,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:04:21 GMT + - Wed, 19 Oct 2022 21:33:09 GMT expires: - '-1' pragma: @@ -3389,7 +3461,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:22 GMT + - Wed, 19 Oct 2022 21:33:09 GMT expires: - '-1' pragma: @@ -3428,17 +3500,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO90aM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSS8c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2108' + - '2113' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:23 GMT + - Wed, 19 Oct 2022 21:33:10 GMT expires: - '-1' pragma: @@ -3457,7 +3529,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO90aM=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSS8c=", "properties": {"disableLocalAuth": true, "disableModuleSAS": true, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": @@ -3485,7 +3557,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO90aM=''}' + - '{''IF-MATCH'': ''AAAADHPSS8c=''}' ParameterSetName: - -n -g --disable-local-auth --disable-module-sas User-Agent: @@ -3494,15 +3566,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO90aM=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSS8c=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjYyZjFkYTYtN2NmNC00NGQ0LWEyNzMtZTc5N2EzMDA5NGY0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjJhYmQxOTUtNGQxNC00ZDQ4LWFjMmEtOTY4Njg3MGIxNmFkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -3510,7 +3582,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:26 GMT + - Wed, 19 Oct 2022 21:33:14 GMT expires: - '-1' pragma: @@ -3542,7 +3614,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjYyZjFkYTYtN2NmNC00NGQ0LWEyNzMtZTc5N2EzMDA5NGY0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjJhYmQxOTUtNGQxNC00ZDQ4LWFjMmEtOTY4Njg3MGIxNmFkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -3554,7 +3626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:26 GMT + - Wed, 19 Oct 2022 21:33:14 GMT expires: - '-1' pragma: @@ -3588,7 +3660,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjYyZjFkYTYtN2NmNC00NGQ0LWEyNzMtZTc5N2EzMDA5NGY0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjJhYmQxOTUtNGQxNC00ZDQ4LWFjMmEtOTY4Njg3MGIxNmFkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -3600,7 +3672,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:04:56 GMT + - Wed, 19 Oct 2022 21:33:44 GMT expires: - '-1' pragma: @@ -3634,7 +3706,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjYyZjFkYTYtN2NmNC00NGQ0LWEyNzMtZTc5N2EzMDA5NGY0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjJhYmQxOTUtNGQxNC00ZDQ4LWFjMmEtOTY4Njg3MGIxNmFkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3646,7 +3718,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:05:26 GMT + - Wed, 19 Oct 2022 21:34:14 GMT expires: - '-1' pragma: @@ -3683,17 +3755,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO912c=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSUSc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2156' + - '2161' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:05:26 GMT + - Wed, 19 Oct 2022 21:34:15 GMT expires: - '-1' pragma: @@ -3737,7 +3809,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:05:27 GMT + - Wed, 19 Oct 2022 21:34:15 GMT expires: - '-1' pragma: @@ -3782,7 +3854,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:05:27 GMT + - Wed, 19 Oct 2022 21:34:16 GMT expires: - '-1' pragma: @@ -3821,17 +3893,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO912c=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSUSc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2156' + - '2161' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:05:28 GMT + - Wed, 19 Oct 2022 21:34:17 GMT expires: - '-1' pragma: @@ -3850,7 +3922,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO912c=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSUSc=", "properties": {"disableLocalAuth": true, "disableDeviceSAS": true, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": @@ -3879,7 +3951,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO912c=''}' + - '{''IF-MATCH'': ''AAAADHPSUSc=''}' ParameterSetName: - -n -g --disable-module-sas --disable-device-sas User-Agent: @@ -3888,15 +3960,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO912c=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSUSc=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODY5YTQ3ZmYtMTMyNy00NTIxLThlYjctNTRhYTEwMmUzNWRlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWU1OTY2YzQtN2JjMC00OGU1LWFlNjQtMjBlMGJiYmJiZjM0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -3904,7 +3976,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:05:31 GMT + - Wed, 19 Oct 2022 21:34:22 GMT expires: - '-1' pragma: @@ -3936,7 +4008,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODY5YTQ3ZmYtMTMyNy00NTIxLThlYjctNTRhYTEwMmUzNWRlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWU1OTY2YzQtN2JjMC00OGU1LWFlNjQtMjBlMGJiYmJiZjM0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -3948,7 +4020,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:05:31 GMT + - Wed, 19 Oct 2022 21:34:22 GMT expires: - '-1' pragma: @@ -3982,7 +4054,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODY5YTQ3ZmYtMTMyNy00NTIxLThlYjctNTRhYTEwMmUzNWRlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWU1OTY2YzQtN2JjMC00OGU1LWFlNjQtMjBlMGJiYmJiZjM0O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3994,7 +4066,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:06:02 GMT + - Wed, 19 Oct 2022 21:34:52 GMT expires: - '-1' pragma: @@ -4031,17 +4103,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO92kw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSVIc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2181' + - '2186' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:06:03 GMT + - Wed, 19 Oct 2022 21:34:53 GMT expires: - '-1' pragma: @@ -4085,7 +4157,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:06:03 GMT + - Wed, 19 Oct 2022 21:34:50 GMT expires: - '-1' pragma: @@ -4130,7 +4202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:06:04 GMT + - Wed, 19 Oct 2022 21:34:53 GMT expires: - '-1' pragma: @@ -4146,7 +4218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -4169,17 +4241,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO92kw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSVIc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2181' + - '2186' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:06:04 GMT + - Wed, 19 Oct 2022 21:34:54 GMT expires: - '-1' pragma: @@ -4198,7 +4270,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO92kw=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSVIc=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": @@ -4227,7 +4299,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO92kw=''}' + - '{''IF-MATCH'': ''AAAADHPSVIc=''}' ParameterSetName: - -n -g --disable-local-auth --disable-device-sas User-Agent: @@ -4236,15 +4308,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO92kw=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSVIc=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTQ0ZDYyMjgtZmYyMS00ZWVkLTgzMzQtMDkxYTQ2MTA2NDdiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzk4ODA3ZWYtMzIwYS00OTdlLWE1NDAtNzU5YzI2MGEwYTc2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -4252,7 +4324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:06:07 GMT + - Wed, 19 Oct 2022 21:34:57 GMT expires: - '-1' pragma: @@ -4284,7 +4356,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTQ0ZDYyMjgtZmYyMS00ZWVkLTgzMzQtMDkxYTQ2MTA2NDdiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzk4ODA3ZWYtMzIwYS00OTdlLWE1NDAtNzU5YzI2MGEwYTc2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -4296,7 +4368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:06:08 GMT + - Wed, 19 Oct 2022 21:34:57 GMT expires: - '-1' pragma: @@ -4330,7 +4402,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTQ0ZDYyMjgtZmYyMS00ZWVkLTgzMzQtMDkxYTQ2MTA2NDdiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzk4ODA3ZWYtMzIwYS00OTdlLWE1NDAtNzU5YzI2MGEwYTc2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -4342,7 +4414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:06:38 GMT + - Wed, 19 Oct 2022 21:35:27 GMT expires: - '-1' pragma: @@ -4376,7 +4448,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTQ0ZDYyMjgtZmYyMS00ZWVkLTgzMzQtMDkxYTQ2MTA2NDdiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMzk4ODA3ZWYtMzIwYS00OTdlLWE1NDAtNzU5YzI2MGEwYTc2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -4388,7 +4460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:07:08 GMT + - Wed, 19 Oct 2022 21:35:58 GMT expires: - '-1' pragma: @@ -4425,17 +4497,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO932g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSW2Q=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2183' + - '2188' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:07:08 GMT + - Wed, 19 Oct 2022 21:35:58 GMT expires: - '-1' pragma: @@ -4472,7 +4544,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -4502,7 +4574,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -4510,8 +4583,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -4523,7 +4596,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -4546,7 +4619,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -4562,14 +4635,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -4591,8 +4665,18 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO932g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSW2Q=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -4609,11 +4693,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '194818' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:07:14 GMT + - Wed, 19 Oct 2022 21:36:15 GMT expires: - '-1' pragma: @@ -4657,17 +4741,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO932g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSW2Q=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}]}' headers: cache-control: - no-cache content-length: - - '2195' + - '2200' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:07:15 GMT + - Wed, 19 Oct 2022 21:36:06 GMT expires: - '-1' pragma: @@ -4704,7 +4788,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -4734,7 +4818,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -4742,8 +4827,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -4755,7 +4840,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -4778,7 +4863,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -4794,14 +4879,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -4823,8 +4909,18 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO932g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSW2Q=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -4841,11 +4937,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '194818' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:07:23 GMT + - Wed, 19 Oct 2022 21:36:14 GMT expires: - '-1' pragma: @@ -4898,7 +4994,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:07:24 GMT + - Wed, 19 Oct 2022 21:36:14 GMT expires: - '-1' pragma: @@ -4935,7 +5031,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -4965,7 +5061,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -4973,8 +5070,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -4986,7 +5083,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -5009,7 +5106,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -5025,14 +5122,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -5054,8 +5152,18 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO932g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSW2Q=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -5072,11 +5180,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '194818' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:07:31 GMT + - Wed, 19 Oct 2022 21:36:29 GMT expires: - '-1' pragma: @@ -5132,7 +5240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:07:31 GMT + - Wed, 19 Oct 2022 21:36:29 GMT expires: - '-1' pragma: @@ -5153,7 +5261,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO932g=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSW2Q=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -5190,7 +5298,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO932g=''}' + - '{''IF-MATCH'': ''AAAADHPSW2Q=''}' ParameterSetName: - --hub-name -n --permissions User-Agent: @@ -5199,16 +5307,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO932g=","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-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSW2Q=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjU1ZjNiMzUtZTkzYi00ODE5LTkxMjctMDE0OWFhMjc1MTkzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZjk1YzUwYTAtMGZmMi00MmM0LWJiNWQtZDFmM2Y0ZDUyOWRhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -5216,7 +5324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:07:34 GMT + - Wed, 19 Oct 2022 21:36:32 GMT expires: - '-1' pragma: @@ -5248,7 +5356,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjU1ZjNiMzUtZTkzYi00ODE5LTkxMjctMDE0OWFhMjc1MTkzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZjk1YzUwYTAtMGZmMi00MmM0LWJiNWQtZDFmM2Y0ZDUyOWRhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -5260,7 +5368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:07:34 GMT + - Wed, 19 Oct 2022 21:36:32 GMT expires: - '-1' pragma: @@ -5294,7 +5402,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjU1ZjNiMzUtZTkzYi00ODE5LTkxMjctMDE0OWFhMjc1MTkzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZjk1YzUwYTAtMGZmMi00MmM0LWJiNWQtZDFmM2Y0ZDUyOWRhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -5306,7 +5414,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:08:04 GMT + - Wed, 19 Oct 2022 21:37:03 GMT expires: - '-1' pragma: @@ -5343,17 +5451,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO95aA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSYDI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2183' + - '2188' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:08:05 GMT + - Wed, 19 Oct 2022 21:37:04 GMT expires: - '-1' pragma: @@ -5390,7 +5498,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -5420,7 +5528,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -5428,8 +5537,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -5441,7 +5550,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -5464,7 +5573,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -5480,14 +5589,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -5509,8 +5619,18 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO95aA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSYDI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -5527,11 +5647,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '194818' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:08:12 GMT + - Wed, 19 Oct 2022 21:37:04 GMT expires: - '-1' pragma: @@ -5588,7 +5708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:08:13 GMT + - Wed, 19 Oct 2022 21:37:05 GMT expires: - '-1' pragma: @@ -5627,7 +5747,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -5657,7 +5777,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -5665,8 +5786,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -5678,7 +5799,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -5701,7 +5822,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -5717,14 +5838,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -5746,8 +5868,18 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO95aA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSYDI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -5764,11 +5896,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '194818' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:08:21 GMT + - Wed, 19 Oct 2022 21:37:11 GMT expires: - '-1' pragma: @@ -5824,7 +5956,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:08:21 GMT + - Wed, 19 Oct 2022 21:37:12 GMT expires: - '-1' pragma: @@ -5840,7 +5972,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -5863,7 +5995,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -5893,7 +6025,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -5901,8 +6034,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -5914,7 +6047,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -5937,7 +6070,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -5953,14 +6086,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -5982,8 +6116,18 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO95aA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSYDI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -6000,11 +6144,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '194818' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:08:29 GMT + - Wed, 19 Oct 2022 21:37:19 GMT expires: - '-1' pragma: @@ -6061,7 +6205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:08:29 GMT + - Wed, 19 Oct 2022 21:37:19 GMT expires: - '-1' pragma: @@ -6082,7 +6226,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO95aA=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSYDI=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -6119,7 +6263,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO95aA=''}' + - '{''IF-MATCH'': ''AAAADHPSYDI=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: @@ -6128,17 +6272,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO95aA=","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-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSYDI=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:07:45 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:07:45 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:07:45 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:07:45 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:07:45 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:07:45 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:36:35 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:36:35 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:36:35 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:36:35 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:36:35 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:36:35 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTU3YmNlNzktMGFhNC00OTViLTkzNDAtNzdmYjBiYWVkODI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzc4Yjk1NmEtOGYyZC00MDYyLWI5YTAtODQ0OGUyZDI2Njg4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -6146,7 +6290,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:08:32 GMT + - Wed, 19 Oct 2022 21:37:22 GMT expires: - '-1' pragma: @@ -6178,7 +6322,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTU3YmNlNzktMGFhNC00OTViLTkzNDAtNzdmYjBiYWVkODI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzc4Yjk1NmEtOGYyZC00MDYyLWI5YTAtODQ0OGUyZDI2Njg4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -6190,7 +6334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:08:32 GMT + - Wed, 19 Oct 2022 21:37:23 GMT expires: - '-1' pragma: @@ -6224,7 +6368,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTU3YmNlNzktMGFhNC00OTViLTkzNDAtNzdmYjBiYWVkODI3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzc4Yjk1NmEtOGYyZC00MDYyLWI5YTAtODQ0OGUyZDI2Njg4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -6236,7 +6380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:09:02 GMT + - Wed, 19 Oct 2022 21:37:52 GMT expires: - '-1' pragma: @@ -6273,17 +6417,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO967A=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSZEo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2183' + - '2188' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:09:03 GMT + - Wed, 19 Oct 2022 21:37:53 GMT expires: - '-1' pragma: @@ -6320,7 +6464,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -6350,7 +6494,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -6358,8 +6503,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -6371,7 +6516,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -6394,7 +6539,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -6410,14 +6555,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -6439,8 +6585,19 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO967A=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSZEo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSYwg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -6457,11 +6614,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '196364' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:09:10 GMT + - Wed, 19 Oct 2022 21:38:01 GMT expires: - '-1' pragma: @@ -6517,7 +6674,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:09:10 GMT + - Wed, 19 Oct 2022 21:38:02 GMT expires: - '-1' pragma: @@ -6556,7 +6713,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -6586,7 +6743,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -6594,8 +6752,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -6607,7 +6765,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -6630,7 +6788,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -6646,14 +6804,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -6675,8 +6834,19 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO967A=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSZEo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSYwg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -6693,11 +6863,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '196364' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:09:17 GMT + - Wed, 19 Oct 2022 21:38:10 GMT expires: - '-1' pragma: @@ -6753,7 +6923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:09:17 GMT + - Wed, 19 Oct 2022 21:38:10 GMT expires: - '-1' pragma: @@ -6792,7 +6962,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -6822,7 +6992,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -6830,8 +7001,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -6843,7 +7014,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -6866,7 +7037,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -6882,14 +7053,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -6911,8 +7083,19 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO967A=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSZEo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSYwg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -6929,11 +7112,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '196364' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:09:25 GMT + - Wed, 19 Oct 2022 21:38:17 GMT expires: - '-1' pragma: @@ -6977,7 +7160,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -7007,7 +7190,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -7015,8 +7199,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -7028,7 +7212,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -7051,7 +7235,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -7067,14 +7251,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -7096,8 +7281,19 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO967A=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSZEo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSYwg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -7114,11 +7310,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '196364' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:09:33 GMT + - Wed, 19 Oct 2022 21:38:24 GMT expires: - '-1' pragma: @@ -7175,7 +7371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:09:33 GMT + - Wed, 19 Oct 2022 21:38:25 GMT expires: - '-1' pragma: @@ -7196,7 +7392,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO967A=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSZEo=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -7233,7 +7429,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO967A=''}' + - '{''IF-MATCH'': ''AAAADHPSZEo=''}' ParameterSetName: - --hub-name -n --renew-key User-Agent: @@ -7242,17 +7438,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO967A=","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-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSZEo=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:08:42 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:08:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:08:42 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:08:42 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:08:42 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:08:42 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + ServiceConnect, DeviceConnect"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:37:32 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:37:32 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:37:32 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:37:32 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:37:32 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:37:32 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDBkNmVjZjUtMTdiNC00NTg5LWJiNzAtYzFkMzRhOWExMWVlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjMyNzQ2OWUtNTU2Yi00ZmY0LWI2ZGUtYzdhOGFlZGZjOTZlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -7260,7 +7456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:09:36 GMT + - Wed, 19 Oct 2022 21:38:28 GMT expires: - '-1' pragma: @@ -7292,7 +7488,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDBkNmVjZjUtMTdiNC00NTg5LWJiNzAtYzFkMzRhOWExMWVlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjMyNzQ2OWUtNTU2Yi00ZmY0LWI2ZGUtYzdhOGFlZGZjOTZlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -7304,7 +7500,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:09:36 GMT + - Wed, 19 Oct 2022 21:38:28 GMT expires: - '-1' pragma: @@ -7338,7 +7534,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDBkNmVjZjUtMTdiNC00NTg5LWJiNzAtYzFkMzRhOWExMWVlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjMyNzQ2OWUtNTU2Yi00ZmY0LWI2ZGUtYzdhOGFlZGZjOTZlO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -7350,7 +7546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:10:06 GMT + - Wed, 19 Oct 2022 21:38:58 GMT expires: - '-1' pragma: @@ -7387,17 +7583,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO98I0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSaN8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2183' + - '2188' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:10:07 GMT + - Wed, 19 Oct 2022 21:38:59 GMT expires: - '-1' pragma: @@ -7434,7 +7630,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -7464,7 +7660,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -7472,8 +7669,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -7485,7 +7682,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -7508,7 +7705,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -7524,14 +7721,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -7553,8 +7751,30 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO98I0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSaN8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSYwg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-af4ed477c6d840069b19bf2772dfd844","name":"test-hub-af4ed477c6d840069b19bf2772dfd844","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSZ/U=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.4566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-bb8a47c19c0d45bd8d08f32a30017f93","name":"test-hub-bb8a47c19c0d45bd8d08f32a30017f93","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","name":"test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-62947466fec34362b8c82c36e8786ea8","name":"test-hub-62947466fec34362b8c82c36e8786ea8","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-52b8cffb55b44669b43c430050170195","name":"test-hub-52b8cffb55b44669b43c430050170195","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.3033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-800497c37e8b4c508469dc3e53028dcb","name":"test-hub-800497c37e8b4c508469dc3e53028dcb","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.5366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f32126ab6ff54739969790259c40be0f","name":"test-hub-f32126ab6ff54739969790259c40be0f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0fc5283c3974763a26eeb15e64c77af","name":"test-hub-a0fc5283c3974763a26eeb15e64c77af","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOc=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.3666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e678d19a666f433a9e796f69a17a5ff4","name":"test-hub-e678d19a666f433a9e796f69a17a5ff4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOs=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1726350432e5401c93a88a24f8c81780","name":"test-hub-1726350432e5401c93a88a24f8c81780","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOw=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","name":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaO8=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:44.3533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -7571,11 +7791,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '213217' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:10:14 GMT + - Wed, 19 Oct 2022 21:39:07 GMT expires: - '-1' pragma: @@ -7631,7 +7851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:10:14 GMT + - Wed, 19 Oct 2022 21:39:07 GMT expires: - '-1' pragma: @@ -7670,7 +7890,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -7700,7 +7920,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -7708,8 +7929,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -7721,7 +7942,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -7744,7 +7965,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -7760,14 +7981,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -7789,8 +8011,30 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO98I0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSaN8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSYwg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-af4ed477c6d840069b19bf2772dfd844","name":"test-hub-af4ed477c6d840069b19bf2772dfd844","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSZ/U=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.4566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-bb8a47c19c0d45bd8d08f32a30017f93","name":"test-hub-bb8a47c19c0d45bd8d08f32a30017f93","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","name":"test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-62947466fec34362b8c82c36e8786ea8","name":"test-hub-62947466fec34362b8c82c36e8786ea8","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-52b8cffb55b44669b43c430050170195","name":"test-hub-52b8cffb55b44669b43c430050170195","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.3033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-800497c37e8b4c508469dc3e53028dcb","name":"test-hub-800497c37e8b4c508469dc3e53028dcb","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.5366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f32126ab6ff54739969790259c40be0f","name":"test-hub-f32126ab6ff54739969790259c40be0f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0fc5283c3974763a26eeb15e64c77af","name":"test-hub-a0fc5283c3974763a26eeb15e64c77af","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOc=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.3666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e678d19a666f433a9e796f69a17a5ff4","name":"test-hub-e678d19a666f433a9e796f69a17a5ff4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOs=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1726350432e5401c93a88a24f8c81780","name":"test-hub-1726350432e5401c93a88a24f8c81780","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOw=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","name":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaO8=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:44.3533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -7807,11 +8051,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '213217' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:10:21 GMT + - Wed, 19 Oct 2022 21:39:16 GMT expires: - '-1' pragma: @@ -7868,7 +8112,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:10:21 GMT + - Wed, 19 Oct 2022 21:39:16 GMT expires: - '-1' pragma: @@ -7920,7 +8164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:10:21 GMT + - Wed, 19 Oct 2022 21:39:16 GMT expires: - '-1' pragma: @@ -7941,7 +8185,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO98I0=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSaN8=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -7977,7 +8221,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO98I0=''}' + - '{''IF-MATCH'': ''AAAADHPSaN8=''}' ParameterSetName: - --hub-name -n User-Agent: @@ -7986,16 +8230,16 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO98I0=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:09:45 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:09:45 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:09:45 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:09:45 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:09:45 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:09:45 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSaN8=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:38:37 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:38:37 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:38:37 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:38:37 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"test_policy","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:38:37 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:38:37 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODdmNWQ2ZDMtMDgwNS00NjBhLWEwNDAtMWExY2JiMDliOTZhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZjkzYmQ5ZDctZDQxMy00YjVhLWFiMTgtYWRmMjZkNjE3YzhhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -8003,7 +8247,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:10:24 GMT + - Wed, 19 Oct 2022 21:39:19 GMT expires: - '-1' pragma: @@ -8035,7 +8279,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODdmNWQ2ZDMtMDgwNS00NjBhLWEwNDAtMWExY2JiMDliOTZhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZjkzYmQ5ZDctZDQxMy00YjVhLWFiMTgtYWRmMjZkNjE3YzhhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -8047,7 +8291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:10:25 GMT + - Wed, 19 Oct 2022 21:39:20 GMT expires: - '-1' pragma: @@ -8081,7 +8325,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODdmNWQ2ZDMtMDgwNS00NjBhLWEwNDAtMWExY2JiMDliOTZhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZjkzYmQ5ZDctZDQxMy00YjVhLWFiMTgtYWRmMjZkNjE3YzhhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -8093,7 +8337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:10:54 GMT + - Wed, 19 Oct 2022 21:39:49 GMT expires: - '-1' pragma: @@ -8130,17 +8374,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSbF4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2183' + - '2188' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:10:55 GMT + - Wed, 19 Oct 2022 21:39:50 GMT expires: - '-1' pragma: @@ -8177,7 +8421,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -8207,7 +8451,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -8215,8 +8460,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -8228,7 +8473,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -8251,7 +8496,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -8267,14 +8512,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -8296,8 +8542,31 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSbF4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSbUs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-dps-hub-f92d700be48644bd89a96d207912e00f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-dps-hub-f92d700be486","endpoint":"sb://iothub-ns-test-dps-h-22349450-0fac1cbc20.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-af4ed477c6d840069b19bf2772dfd844","name":"test-hub-af4ed477c6d840069b19bf2772dfd844","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSZ/U=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.4566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-bb8a47c19c0d45bd8d08f32a30017f93","name":"test-hub-bb8a47c19c0d45bd8d08f32a30017f93","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","name":"test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-62947466fec34362b8c82c36e8786ea8","name":"test-hub-62947466fec34362b8c82c36e8786ea8","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-52b8cffb55b44669b43c430050170195","name":"test-hub-52b8cffb55b44669b43c430050170195","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.3033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-800497c37e8b4c508469dc3e53028dcb","name":"test-hub-800497c37e8b4c508469dc3e53028dcb","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.5366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f32126ab6ff54739969790259c40be0f","name":"test-hub-f32126ab6ff54739969790259c40be0f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0fc5283c3974763a26eeb15e64c77af","name":"test-hub-a0fc5283c3974763a26eeb15e64c77af","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOc=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.3666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e678d19a666f433a9e796f69a17a5ff4","name":"test-hub-e678d19a666f433a9e796f69a17a5ff4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOs=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1726350432e5401c93a88a24f8c81780","name":"test-hub-1726350432e5401c93a88a24f8c81780","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOw=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","name":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaO8=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:44.3533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","name":"test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSbAI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=hubstore3339;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:39:30.7233333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -8314,11 +8583,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '215083' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:03 GMT + - Wed, 19 Oct 2022 21:40:00 GMT expires: - '-1' pragma: @@ -8374,7 +8643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:03 GMT + - Wed, 19 Oct 2022 21:40:00 GMT expires: - '-1' pragma: @@ -8413,7 +8682,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -8443,7 +8712,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -8451,8 +8721,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -8464,7 +8734,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -8487,7 +8757,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -8503,14 +8773,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -8532,8 +8803,31 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSbF4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSbUs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-dps-hub-f92d700be48644bd89a96d207912e00f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-dps-hub-f92d700be486","endpoint":"sb://iothub-ns-test-dps-h-22349450-0fac1cbc20.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-af4ed477c6d840069b19bf2772dfd844","name":"test-hub-af4ed477c6d840069b19bf2772dfd844","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSZ/U=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.4566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-bb8a47c19c0d45bd8d08f32a30017f93","name":"test-hub-bb8a47c19c0d45bd8d08f32a30017f93","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","name":"test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-62947466fec34362b8c82c36e8786ea8","name":"test-hub-62947466fec34362b8c82c36e8786ea8","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-52b8cffb55b44669b43c430050170195","name":"test-hub-52b8cffb55b44669b43c430050170195","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.3033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-800497c37e8b4c508469dc3e53028dcb","name":"test-hub-800497c37e8b4c508469dc3e53028dcb","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.5366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f32126ab6ff54739969790259c40be0f","name":"test-hub-f32126ab6ff54739969790259c40be0f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0fc5283c3974763a26eeb15e64c77af","name":"test-hub-a0fc5283c3974763a26eeb15e64c77af","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOc=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.3666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e678d19a666f433a9e796f69a17a5ff4","name":"test-hub-e678d19a666f433a9e796f69a17a5ff4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOs=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1726350432e5401c93a88a24f8c81780","name":"test-hub-1726350432e5401c93a88a24f8c81780","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOw=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","name":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaO8=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:44.3533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","name":"test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSbAI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=hubstore3339;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:39:30.7233333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -8550,11 +8844,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '215083' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:13 GMT + - Wed, 19 Oct 2022 21:40:10 GMT expires: - '-1' pragma: @@ -8602,7 +8896,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2022-04-30-preview response: body: - string: '{"properties":{"created":"Tue, 18 Oct 2022 21:11:15 GMT","properties":{"name":"cg1"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' + string: '{"properties":{"created":"Wed, 19 Oct 2022 21:40:12 GMT","properties":{"name":"cg1"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache @@ -8611,7 +8905,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:15 GMT + - Wed, 19 Oct 2022 21:40:12 GMT expires: - '-1' pragma: @@ -8650,7 +8944,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -8680,7 +8974,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -8688,8 +8983,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -8701,7 +8996,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -8724,7 +9019,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -8740,14 +9035,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -8769,8 +9065,31 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSbF4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSbUs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-dps-hub-f92d700be48644bd89a96d207912e00f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-dps-hub-f92d700be486","endpoint":"sb://iothub-ns-test-dps-h-22349450-0fac1cbc20.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-af4ed477c6d840069b19bf2772dfd844","name":"test-hub-af4ed477c6d840069b19bf2772dfd844","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSZ/U=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.4566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-bb8a47c19c0d45bd8d08f32a30017f93","name":"test-hub-bb8a47c19c0d45bd8d08f32a30017f93","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","name":"test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-62947466fec34362b8c82c36e8786ea8","name":"test-hub-62947466fec34362b8c82c36e8786ea8","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-52b8cffb55b44669b43c430050170195","name":"test-hub-52b8cffb55b44669b43c430050170195","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.3033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-800497c37e8b4c508469dc3e53028dcb","name":"test-hub-800497c37e8b4c508469dc3e53028dcb","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.5366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f32126ab6ff54739969790259c40be0f","name":"test-hub-f32126ab6ff54739969790259c40be0f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0fc5283c3974763a26eeb15e64c77af","name":"test-hub-a0fc5283c3974763a26eeb15e64c77af","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOc=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.3666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e678d19a666f433a9e796f69a17a5ff4","name":"test-hub-e678d19a666f433a9e796f69a17a5ff4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOs=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1726350432e5401c93a88a24f8c81780","name":"test-hub-1726350432e5401c93a88a24f8c81780","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOw=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","name":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaO8=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:44.3533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","name":"test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSbAI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=hubstore3339;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:39:30.7233333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -8787,11 +9106,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '215083' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:22 GMT + - Wed, 19 Oct 2022 21:40:20 GMT expires: - '-1' pragma: @@ -8835,7 +9154,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1?api-version=2022-04-30-preview response: body: - string: '{"properties":{"created":"Tue, 18 Oct 2022 21:11:15 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' + string: '{"properties":{"created":"Wed, 19 Oct 2022 21:40:12 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}' headers: cache-control: - no-cache @@ -8844,7 +9163,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:23 GMT + - Wed, 19 Oct 2022 21:40:21 GMT expires: - '-1' pragma: @@ -8881,7 +9200,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -8911,7 +9230,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -8919,8 +9239,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -8932,7 +9252,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -8955,7 +9275,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -8971,14 +9291,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -9000,8 +9321,31 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSbF4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSbUs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-dps-hub-f92d700be48644bd89a96d207912e00f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-dps-hub-f92d700be486","endpoint":"sb://iothub-ns-test-dps-h-22349450-0fac1cbc20.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-af4ed477c6d840069b19bf2772dfd844","name":"test-hub-af4ed477c6d840069b19bf2772dfd844","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSZ/U=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.4566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-bb8a47c19c0d45bd8d08f32a30017f93","name":"test-hub-bb8a47c19c0d45bd8d08f32a30017f93","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","name":"test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-62947466fec34362b8c82c36e8786ea8","name":"test-hub-62947466fec34362b8c82c36e8786ea8","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-52b8cffb55b44669b43c430050170195","name":"test-hub-52b8cffb55b44669b43c430050170195","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.3033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-800497c37e8b4c508469dc3e53028dcb","name":"test-hub-800497c37e8b4c508469dc3e53028dcb","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.5366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f32126ab6ff54739969790259c40be0f","name":"test-hub-f32126ab6ff54739969790259c40be0f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0fc5283c3974763a26eeb15e64c77af","name":"test-hub-a0fc5283c3974763a26eeb15e64c77af","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOc=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.3666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e678d19a666f433a9e796f69a17a5ff4","name":"test-hub-e678d19a666f433a9e796f69a17a5ff4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOs=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1726350432e5401c93a88a24f8c81780","name":"test-hub-1726350432e5401c93a88a24f8c81780","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOw=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","name":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaO8=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:44.3533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","name":"test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSbAI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=hubstore3339;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:39:30.7233333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -9018,11 +9362,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '215083' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:30 GMT + - Wed, 19 Oct 2022 21:40:30 GMT expires: - '-1' pragma: @@ -9066,8 +9410,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups?api-version=2022-04-30-preview response: body: - string: '{"value":[{"properties":{"created":"Tue, 18 Oct 2022 21:02:08 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Tue, - 18 Oct 2022 21:11:15 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"value":[{"properties":{"created":"Wed, 19 Oct 2022 21:30:52 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null},{"properties":{"created":"Wed, + 19 Oct 2022 21:40:12 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/cg1","name":"cg1","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: cache-control: - no-cache @@ -9076,7 +9420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:31 GMT + - Wed, 19 Oct 2022 21:40:31 GMT expires: - '-1' pragma: @@ -9113,7 +9457,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -9143,7 +9487,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -9151,8 +9496,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -9164,7 +9509,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -9187,7 +9532,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -9203,14 +9548,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -9232,8 +9578,31 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSbF4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSbUs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-dps-hub-f92d700be48644bd89a96d207912e00f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-dps-hub-f92d700be486","endpoint":"sb://iothub-ns-test-dps-h-22349450-0fac1cbc20.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-af4ed477c6d840069b19bf2772dfd844","name":"test-hub-af4ed477c6d840069b19bf2772dfd844","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSZ/U=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.4566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-bb8a47c19c0d45bd8d08f32a30017f93","name":"test-hub-bb8a47c19c0d45bd8d08f32a30017f93","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","name":"test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-62947466fec34362b8c82c36e8786ea8","name":"test-hub-62947466fec34362b8c82c36e8786ea8","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-52b8cffb55b44669b43c430050170195","name":"test-hub-52b8cffb55b44669b43c430050170195","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.3033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-800497c37e8b4c508469dc3e53028dcb","name":"test-hub-800497c37e8b4c508469dc3e53028dcb","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.5366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f32126ab6ff54739969790259c40be0f","name":"test-hub-f32126ab6ff54739969790259c40be0f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSb2s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-f32126ab6ff54739969790259c40be0f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-f32126ab6ff54739","endpoint":"sb://iothub-ns-test-hub-f-22349471-8f62f74d32.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0fc5283c3974763a26eeb15e64c77af","name":"test-hub-a0fc5283c3974763a26eeb15e64c77af","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSb4g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a0fc5283c3974763a26eeb15e64c77af.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a0fc5283c3974763","endpoint":"sb://iothub-ns-test-hub-a-22349472-262b32133d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.3666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e678d19a666f433a9e796f69a17a5ff4","name":"test-hub-e678d19a666f433a9e796f69a17a5ff4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOs=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1726350432e5401c93a88a24f8c81780","name":"test-hub-1726350432e5401c93a88a24f8c81780","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSb3k=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1726350432e5401c93a88a24f8c81780.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1726350432e5401c","endpoint":"sb://iothub-ns-test-hub-1-22349474-bf22122cb4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","name":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaO8=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:44.3533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","name":"test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSbAI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=hubstore3339;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:39:30.7233333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -9250,11 +9619,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '215740' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:38 GMT + - Wed, 19 Oct 2022 21:40:40 GMT expires: - '-1' pragma: @@ -9307,7 +9676,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:11:39 GMT + - Wed, 19 Oct 2022 21:40:41 GMT expires: - '-1' pragma: @@ -9342,7 +9711,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -9372,7 +9741,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -9380,8 +9750,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -9393,7 +9763,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -9416,7 +9786,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -9432,14 +9802,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -9461,8 +9832,31 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSbF4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSbUs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-dps-hub-f92d700be48644bd89a96d207912e00f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-dps-hub-f92d700be486","endpoint":"sb://iothub-ns-test-dps-h-22349450-0fac1cbc20.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-af4ed477c6d840069b19bf2772dfd844","name":"test-hub-af4ed477c6d840069b19bf2772dfd844","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSZ/U=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.4566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-bb8a47c19c0d45bd8d08f32a30017f93","name":"test-hub-bb8a47c19c0d45bd8d08f32a30017f93","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","name":"test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-62947466fec34362b8c82c36e8786ea8","name":"test-hub-62947466fec34362b8c82c36e8786ea8","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-52b8cffb55b44669b43c430050170195","name":"test-hub-52b8cffb55b44669b43c430050170195","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.3033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-800497c37e8b4c508469dc3e53028dcb","name":"test-hub-800497c37e8b4c508469dc3e53028dcb","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.5366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f32126ab6ff54739969790259c40be0f","name":"test-hub-f32126ab6ff54739969790259c40be0f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSb5E=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-f32126ab6ff54739969790259c40be0f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-f32126ab6ff54739","endpoint":"sb://iothub-ns-test-hub-f-22349471-8f62f74d32.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0fc5283c3974763a26eeb15e64c77af","name":"test-hub-a0fc5283c3974763a26eeb15e64c77af","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSb4g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a0fc5283c3974763a26eeb15e64c77af.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a0fc5283c3974763","endpoint":"sb://iothub-ns-test-hub-a-22349472-262b32133d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.3666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e678d19a666f433a9e796f69a17a5ff4","name":"test-hub-e678d19a666f433a9e796f69a17a5ff4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaOs=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1726350432e5401c93a88a24f8c81780","name":"test-hub-1726350432e5401c93a88a24f8c81780","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSb5o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1726350432e5401c93a88a24f8c81780.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1726350432e5401c","endpoint":"sb://iothub-ns-test-hub-1-22349474-bf22122cb4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","name":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaO8=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:44.3533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","name":"test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSbAI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=hubstore3339;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:39:30.7233333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -9479,11 +9873,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '215740' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:47 GMT + - Wed, 19 Oct 2022 21:40:52 GMT expires: - '-1' pragma: @@ -9527,7 +9921,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups?api-version=2022-04-30-preview response: body: - string: '{"value":[{"properties":{"created":"Tue, 18 Oct 2022 21:02:08 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' + string: '{"value":[{"properties":{"created":"Wed, 19 Oct 2022 21:30:52 GMT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003/eventHubEndpoints/events/ConsumerGroups/%24Default","name":"$Default","type":"Microsoft.Devices/IotHubs/EventHubEndpoints/ConsumerGroups","etag":null}]}' headers: cache-control: - no-cache @@ -9536,7 +9930,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:48 GMT + - Wed, 19 Oct 2022 21:40:53 GMT expires: - '-1' pragma: @@ -9573,7 +9967,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -9603,7 +9997,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -9611,8 +10006,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -9624,7 +10019,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -9647,7 +10042,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -9663,14 +10058,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -9692,8 +10088,40 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSbF4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSbUs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-dps-hub-f92d700be48644bd89a96d207912e00f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-dps-hub-f92d700be486","endpoint":"sb://iothub-ns-test-dps-h-22349450-0fac1cbc20.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-af4ed477c6d840069b19bf2772dfd844","name":"test-hub-af4ed477c6d840069b19bf2772dfd844","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScSg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-af4ed477c6d840069b19bf2772dfd844.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-af4ed477c6d84006","endpoint":"sb://iothub-ns-test-hub-a-22349462-8891eba594.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.4566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-bb8a47c19c0d45bd8d08f32a30017f93","name":"test-hub-bb8a47c19c0d45bd8d08f32a30017f93","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-bb8a47c19c0d45bd8d08f32a30017f93.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-bb8a47c19c0d45bd","endpoint":"sb://iothub-ns-test-hub-b-22349463-b059d414f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","name":"test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-62947466fec34362b8c82c36e8786ea8","name":"test-hub-62947466fec34362b8c82c36e8786ea8","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-52b8cffb55b44669b43c430050170195","name":"test-hub-52b8cffb55b44669b43c430050170195","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.3033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-800497c37e8b4c508469dc3e53028dcb","name":"test-hub-800497c37e8b4c508469dc3e53028dcb","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.5366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f32126ab6ff54739969790259c40be0f","name":"test-hub-f32126ab6ff54739969790259c40be0f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSb5E=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-f32126ab6ff54739969790259c40be0f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-f32126ab6ff54739","endpoint":"sb://iothub-ns-test-hub-f-22349471-8f62f74d32.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0fc5283c3974763a26eeb15e64c77af","name":"test-hub-a0fc5283c3974763a26eeb15e64c77af","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSb4g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a0fc5283c3974763a26eeb15e64c77af.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a0fc5283c3974763","endpoint":"sb://iothub-ns-test-hub-a-22349472-262b32133d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.3666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e678d19a666f433a9e796f69a17a5ff4","name":"test-hub-e678d19a666f433a9e796f69a17a5ff4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScRA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-e678d19a666f433a9e796f69a17a5ff4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-e678d19a666f433a","endpoint":"sb://iothub-ns-test-hub-e-22349473-9a9825974f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1726350432e5401c93a88a24f8c81780","name":"test-hub-1726350432e5401c93a88a24f8c81780","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSb5o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1726350432e5401c93a88a24f8c81780.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1726350432e5401c","endpoint":"sb://iothub-ns-test-hub-1-22349474-bf22122cb4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","name":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaO8=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:44.3533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","name":"test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSbAI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=hubstore3339;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:39:30.7233333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-694fddf568f4425f9c4c7a3fdf7885be","name":"test-hub-694fddf568f4425f9c4c7a3fdf7885be","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScL4=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:47.5366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-710203dbe9a24fbf880aef66891822d4","name":"test-hub-710203dbe9a24fbf880aef66891822d4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScMA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:47.64Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-dbcdd57f94eb487db0d2e041cc9bab96","name":"test-hub-dbcdd57f94eb487db0d2e041cc9bab96","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScMM=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:48.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-3ec0398bf4b44c2c9bf9be52f8686e38","name":"test-hub-3ec0398bf4b44c2c9bf9be52f8686e38","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScMo=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:48.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-4215c54e79f3430c950f9dae374e830f","name":"test-hub-4215c54e79f3430c950f9dae374e830f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScMg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:48.42Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-31963c6e05d6498da9b457fbd13a9994","name":"test-hub-31963c6e05d6498da9b457fbd13a9994","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScNw=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:49.2766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-fd383f58f50b4d95ac2842b623ff3bde","name":"test-hub-fd383f58f50b4d95ac2842b623ff3bde","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScR4=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:53.5833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-0c87cd94126342f4817e27a62539bc08","name":"test-hub-0c87cd94126342f4817e27a62539bc08","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScSE=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:53.7Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-6f5c11429c28427dbc07184db52fb325","name":"test-hub-6f5c11429c28427dbc07184db52fb325","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScSc=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:53.8733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -9710,11 +10138,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '230178' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:54 GMT + - Wed, 19 Oct 2022 21:41:05 GMT expires: - '-1' pragma: @@ -9767,7 +10195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:11:55 GMT + - Wed, 19 Oct 2022 21:41:05 GMT expires: - '-1' pragma: @@ -9804,7 +10232,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -9834,7 +10262,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -9842,8 +10271,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -9855,7 +10284,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -9878,7 +10307,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -9894,14 +10323,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -9923,8 +10353,48 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSbF4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-f92d700be48644bd89a96d207912e00f","name":"test-dps-hub-f92d700be48644bd89a96d207912e00f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"rk-iot-dps"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHPSbUs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-dps-hub-f92d700be48644bd89a96d207912e00f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-dps-hub-f92d700be486","endpoint":"sb://iothub-ns-test-dps-h-22349450-0fac1cbc20.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:37:22.65Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-af4ed477c6d840069b19bf2772dfd844","name":"test-hub-af4ed477c6d840069b19bf2772dfd844","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScVA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-af4ed477c6d840069b19bf2772dfd844.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-af4ed477c6d84006","endpoint":"sb://iothub-ns-test-hub-a-22349462-8891eba594.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.4566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-bb8a47c19c0d45bd8d08f32a30017f93","name":"test-hub-bb8a47c19c0d45bd8d08f32a30017f93","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-bb8a47c19c0d45bd8d08f32a30017f93.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-bb8a47c19c0d45bd","endpoint":"sb://iothub-ns-test-hub-b-22349463-b059d414f3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","name":"test-hub-31f0e0c18c1745f0ba6a4684ac04fa65","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaAg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:34.7933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-62947466fec34362b8c82c36e8786ea8","name":"test-hub-62947466fec34362b8c82c36e8786ea8","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-52b8cffb55b44669b43c430050170195","name":"test-hub-52b8cffb55b44669b43c430050170195","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.3033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-800497c37e8b4c508469dc3e53028dcb","name":"test-hub-800497c37e8b4c508469dc3e53028dcb","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaBY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:35.5366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f32126ab6ff54739969790259c40be0f","name":"test-hub-f32126ab6ff54739969790259c40be0f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSb5E=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-f32126ab6ff54739969790259c40be0f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-f32126ab6ff54739","endpoint":"sb://iothub-ns-test-hub-f-22349471-8f62f74d32.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0fc5283c3974763a26eeb15e64c77af","name":"test-hub-a0fc5283c3974763a26eeb15e64c77af","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSb4g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a0fc5283c3974763a26eeb15e64c77af.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a0fc5283c3974763","endpoint":"sb://iothub-ns-test-hub-a-22349472-262b32133d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.3666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e678d19a666f433a9e796f69a17a5ff4","name":"test-hub-e678d19a666f433a9e796f69a17a5ff4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScRA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-e678d19a666f433a9e796f69a17a5ff4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-e678d19a666f433a","endpoint":"sb://iothub-ns-test-hub-e-22349473-9a9825974f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1726350432e5401c93a88a24f8c81780","name":"test-hub-1726350432e5401c93a88a24f8c81780","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSb5o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1726350432e5401c93a88a24f8c81780.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1726350432e5401c","endpoint":"sb://iothub-ns-test-hub-1-22349474-bf22122cb4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:43.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","name":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSaO8=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:44.3533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","name":"test-hub-ab813df0c58547fdaaabcc5ca6e64fe3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSbAI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=hubstore3339;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:39:30.7233333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-694fddf568f4425f9c4c7a3fdf7885be","name":"test-hub-694fddf568f4425f9c4c7a3fdf7885be","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScL4=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:47.5366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-710203dbe9a24fbf880aef66891822d4","name":"test-hub-710203dbe9a24fbf880aef66891822d4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScMA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:47.64Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-dbcdd57f94eb487db0d2e041cc9bab96","name":"test-hub-dbcdd57f94eb487db0d2e041cc9bab96","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScMM=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:48.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-3ec0398bf4b44c2c9bf9be52f8686e38","name":"test-hub-3ec0398bf4b44c2c9bf9be52f8686e38","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScMo=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:48.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-4215c54e79f3430c950f9dae374e830f","name":"test-hub-4215c54e79f3430c950f9dae374e830f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScMg=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:48.42Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-31963c6e05d6498da9b457fbd13a9994","name":"test-hub-31963c6e05d6498da9b457fbd13a9994","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScNw=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:49.2766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-fd383f58f50b4d95ac2842b623ff3bde","name":"test-hub-fd383f58f50b4d95ac2842b623ff3bde","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScUA=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:53.5833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-0c87cd94126342f4817e27a62539bc08","name":"test-hub-0c87cd94126342f4817e27a62539bc08","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScUE=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:53.7Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-6f5c11429c28427dbc07184db52fb325","name":"test-hub-6f5c11429c28427dbc07184db52fb325","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScUI=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:53.8733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-bfe03daee8bd466d8e440178b290f042","name":"test-hub-bfe03daee8bd466d8e440178b290f042","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScVQ=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:54.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-c21c89949bc747f7bcaa0278ed51af5a","name":"test-hub-c21c89949bc747f7bcaa0278ed51af5a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScVU=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:54.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-dfeeed321a644a4b80182ec54a5e9c01","name":"test-hub-dfeeed321a644a4b80182ec54a5e9c01","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScVY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:40:54.6333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-87eb9f0e62e74db19af1053d12ce18f2","name":"test-hub-87eb9f0e62e74db19af1053d12ce18f2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSci0=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:41:06.2133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-c3c314517c54458ab7c6655e2913a988","name":"test-hub-c3c314517c54458ab7c6655e2913a988","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScjQ=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:41:06.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-37e82e0e42ff4fb49c19f8de6944c100","name":"test-hub-37e82e0e42ff4fb49c19f8de6944c100","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScjY=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:41:06.4166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-594c39d7d0a847d0907eeefd96aebf11","name":"test-hub-594c39d7d0a847d0907eeefd96aebf11","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScjk=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:41:06.4633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-51204fbb6e844f65bd3d255c417a76d2","name":"test-hub-51204fbb6e844f65bd3d255c417a76d2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPScjA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Activating","provisioningState":"Activating","ipFilterRules":[],"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"enableFileUploadNotifications":false,"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:41:06.5533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -9941,11 +10411,11 @@ interactions: cache-control: - no-cache content-length: - - '178640' + - '242068' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:02 GMT + - Wed, 19 Oct 2022 21:41:20 GMT expires: - '-1' pragma: @@ -9998,7 +10468,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:02 GMT + - Wed, 19 Oct 2022 21:41:20 GMT expires: - '-1' pragma: @@ -10042,7 +10512,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:12:03 GMT + - Wed, 19 Oct 2022 21:41:20 GMT expires: - '-1' pragma: @@ -10087,7 +10557,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:03 GMT + - Wed, 19 Oct 2022 21:41:20 GMT expires: - '-1' pragma: @@ -10126,17 +10596,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSbF4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2183' + - '2188' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:04 GMT + - Wed, 19 Oct 2022 21:41:21 GMT expires: - '-1' pragma: @@ -10155,12 +10625,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO989s=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSbF4=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"connectionString": - "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;****", + "Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;****", "containerName": "iothubcontainer1000004"}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT15S", "ttlAsIso8601": "P1DT8H", "maxDeliveryCount": 80}}, "enableFileUploadNotifications": true, "cloudToDevice": {"maxDeliveryCount": @@ -10181,7 +10651,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO989s=''}' + - '{''IF-MATCH'': ''AAAADHPSbF4=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c User-Agent: @@ -10190,15 +10660,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO989s=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSbF4=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}]}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGZmZGM4Y2UtYjliMC00YWFiLTg4ODAtM2U5YWIyMzNmODhiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDdlYWU4ZDAtZWY3MC00YzJkLWI4M2ItZjIyMWM1ODMxODc1O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -10206,7 +10676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:07 GMT + - Wed, 19 Oct 2022 21:41:24 GMT expires: - '-1' pragma: @@ -10238,7 +10708,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGZmZGM4Y2UtYjliMC00YWFiLTg4ODAtM2U5YWIyMzNmODhiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDdlYWU4ZDAtZWY3MC00YzJkLWI4M2ItZjIyMWM1ODMxODc1O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -10250,7 +10720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:07 GMT + - Wed, 19 Oct 2022 21:41:25 GMT expires: - '-1' pragma: @@ -10284,7 +10754,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGZmZGM4Y2UtYjliMC00YWFiLTg4ODAtM2U5YWIyMzNmODhiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDdlYWU4ZDAtZWY3MC00YzJkLWI4M2ItZjIyMWM1ODMxODc1O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -10296,7 +10766,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:38 GMT + - Wed, 19 Oct 2022 21:41:54 GMT expires: - '-1' pragma: @@ -10333,17 +10803,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9+dU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSdHg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2540' + - '2545' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:39 GMT + - Wed, 19 Oct 2022 21:41:55 GMT expires: - '-1' pragma: @@ -10387,7 +10857,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:12:38 GMT + - Wed, 19 Oct 2022 21:41:56 GMT expires: - '-1' pragma: @@ -10432,7 +10902,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:40 GMT + - Wed, 19 Oct 2022 21:42:00 GMT expires: - '-1' pragma: @@ -10471,17 +10941,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9+dU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSdHg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2540' + - '2545' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:41 GMT + - Wed, 19 Oct 2022 21:42:01 GMT expires: - '-1' pragma: @@ -10525,7 +10995,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:12:40 GMT + - Wed, 19 Oct 2022 21:41:59 GMT expires: - '-1' pragma: @@ -10570,7 +11040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:41 GMT + - Wed, 19 Oct 2022 21:41:59 GMT expires: - '-1' pragma: @@ -10609,17 +11079,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9+dU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSdHg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2540' + - '2545' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:42 GMT + - Wed, 19 Oct 2022 21:42:00 GMT expires: - '-1' pragma: @@ -10663,7 +11133,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:12:42 GMT + - Wed, 19 Oct 2022 21:42:00 GMT expires: - '-1' pragma: @@ -10708,7 +11178,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:43 GMT + - Wed, 19 Oct 2022 21:42:01 GMT expires: - '-1' pragma: @@ -10724,7 +11194,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -10747,17 +11217,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9+dU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSdHg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2540' + - '2545' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:44 GMT + - Wed, 19 Oct 2022 21:42:01 GMT expires: - '-1' pragma: @@ -10801,7 +11271,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:12:44 GMT + - Wed, 19 Oct 2022 21:42:02 GMT expires: - '-1' pragma: @@ -10846,7 +11316,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:45 GMT + - Wed, 19 Oct 2022 21:42:02 GMT expires: - '-1' pragma: @@ -10885,17 +11355,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9+dU=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSdHg=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2540' + - '2545' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:45 GMT + - Wed, 19 Oct 2022 21:42:03 GMT expires: - '-1' pragma: @@ -10914,12 +11384,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO9+dU=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSdHg=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/", @@ -10950,7 +11420,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO9+dU=''}' + - '{''IF-MATCH'': ''AAAADHPSdHg=''}' ParameterSetName: - --hub-name -g -n -t -r -s -c --container-name --encoding -b -w User-Agent: @@ -10959,15 +11429,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9+dU=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSdHg=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}]}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDlkODZjYzQtYWE2MC00OTczLWJhYzgtZTQ5ZjNhYTJjYjg4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNGUxYmYyOGItNzMxYi00YjU0LTg3ZjAtNmUxMTA0NzFhYzBhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -10975,7 +11445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:49 GMT + - Wed, 19 Oct 2022 21:42:07 GMT expires: - '-1' pragma: @@ -11007,7 +11477,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDlkODZjYzQtYWE2MC00OTczLWJhYzgtZTQ5ZjNhYTJjYjg4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNGUxYmYyOGItNzMxYi00YjU0LTg3ZjAtNmUxMTA0NzFhYzBhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -11019,7 +11489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:12:49 GMT + - Wed, 19 Oct 2022 21:42:07 GMT expires: - '-1' pragma: @@ -11053,7 +11523,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDlkODZjYzQtYWE2MC00OTczLWJhYzgtZTQ5ZjNhYTJjYjg4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNGUxYmYyOGItNzMxYi00YjU0LTg3ZjAtNmUxMTA0NzFhYzBhO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -11065,7 +11535,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:13:20 GMT + - Wed, 19 Oct 2022 21:42:37 GMT expires: - '-1' pragma: @@ -11102,17 +11572,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9++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-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSdwE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3244' + - '3249' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:13:21 GMT + - Wed, 19 Oct 2022 21:42:37 GMT expires: - '-1' pragma: @@ -11156,7 +11626,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:13:21 GMT + - Wed, 19 Oct 2022 21:42:38 GMT expires: - '-1' pragma: @@ -11201,7 +11671,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:13:21 GMT + - Wed, 19 Oct 2022 21:42:39 GMT expires: - '-1' pragma: @@ -11240,17 +11710,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9++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-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSdwE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3244' + - '3249' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:13:22 GMT + - Wed, 19 Oct 2022 21:42:40 GMT expires: - '-1' pragma: @@ -11269,14 +11739,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO9++8=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSdwE=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", @@ -11307,7 +11777,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO9++8=''}' + - '{''IF-MATCH'': ''AAAADHPSdwE=''}' ParameterSetName: - --hub-name -g -n -s --en -c -e User-Agent: @@ -11316,15 +11786,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9++8=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSdwE=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}]}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmNjZWVjMjQtODI1YS00MzcxLTg5NGQtYmY2YWQ4NWMwYmNkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjNlNDU2MDctNjdhMi00NzhhLWIxYzYtZDQ2NTVlOWZmMjU4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -11332,7 +11802,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:13:26 GMT + - Wed, 19 Oct 2022 21:42:43 GMT expires: - '-1' pragma: @@ -11364,7 +11834,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmNjZWVjMjQtODI1YS00MzcxLTg5NGQtYmY2YWQ4NWMwYmNkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjNlNDU2MDctNjdhMi00NzhhLWIxYzYtZDQ2NTVlOWZmMjU4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -11376,7 +11846,53 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:13:26 GMT + - Wed, 19 Oct 2022 21:42:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub route create + Connection: + - keep-alive + ParameterSetName: + - --hub-name -g -n -s --en -c -e + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjNlNDU2MDctNjdhMi00NzhhLWIxYzYtZDQ2NTVlOWZmMjU4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 21:43:13 GMT expires: - '-1' pragma: @@ -11410,7 +11926,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZmNjZWVjMjQtODI1YS00MzcxLTg5NGQtYmY2YWQ4NWMwYmNkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMjNlNDU2MDctNjdhMi00NzhhLWIxYzYtZDQ2NTVlOWZmMjU4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -11422,7 +11938,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:13:56 GMT + - Wed, 19 Oct 2022 21:43:44 GMT expires: - '-1' pragma: @@ -11459,17 +11975,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSeRk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3350' + - '3355' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:13:57 GMT + - Wed, 19 Oct 2022 21:43:45 GMT expires: - '-1' pragma: @@ -11513,7 +12029,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:13:58 GMT + - Wed, 19 Oct 2022 21:43:52 GMT expires: - '-1' pragma: @@ -11558,7 +12074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:13:59 GMT + - Wed, 19 Oct 2022 21:43:46 GMT expires: - '-1' pragma: @@ -11597,17 +12113,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSeRk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3350' + - '3355' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:00 GMT + - Wed, 19 Oct 2022 21:43:46 GMT expires: - '-1' pragma: @@ -11651,7 +12167,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:13:59 GMT + - Wed, 19 Oct 2022 21:43:46 GMT expires: - '-1' pragma: @@ -11696,7 +12212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:00 GMT + - Wed, 19 Oct 2022 21:43:47 GMT expires: - '-1' pragma: @@ -11735,17 +12251,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSeRk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3350' + - '3355' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:01 GMT + - Wed, 19 Oct 2022 21:43:48 GMT expires: - '-1' pragma: @@ -11789,7 +12305,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:14:02 GMT + - Wed, 19 Oct 2022 21:43:52 GMT expires: - '-1' pragma: @@ -11834,7 +12350,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:02 GMT + - Wed, 19 Oct 2022 21:43:49 GMT expires: - '-1' pragma: @@ -11873,17 +12389,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSeRk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3350' + - '3355' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:03 GMT + - Wed, 19 Oct 2022 21:43:50 GMT expires: - '-1' pragma: @@ -11927,7 +12443,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:14:03 GMT + - Wed, 19 Oct 2022 21:43:50 GMT expires: - '-1' pragma: @@ -11972,7 +12488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:04 GMT + - Wed, 19 Oct 2022 21:43:52 GMT expires: - '-1' pragma: @@ -11988,7 +12504,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -12011,17 +12527,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSeRk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3350' + - '3355' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:05 GMT + - Wed, 19 Oct 2022 21:43:52 GMT expires: - '-1' pragma: @@ -12072,7 +12588,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:05 GMT + - Wed, 19 Oct 2022 21:43:53 GMT expires: - '-1' pragma: @@ -12088,7 +12604,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -12118,7 +12634,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:14:05 GMT + - Wed, 19 Oct 2022 21:43:53 GMT expires: - '-1' pragma: @@ -12163,7 +12679,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:06 GMT + - Wed, 19 Oct 2022 21:43:53 GMT expires: - '-1' pragma: @@ -12202,17 +12718,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSeRk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3350' + - '3355' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:07 GMT + - Wed, 19 Oct 2022 21:43:54 GMT expires: - '-1' pragma: @@ -12264,7 +12780,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:07 GMT + - Wed, 19 Oct 2022 21:43:54 GMT expires: - '-1' pragma: @@ -12316,7 +12832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:09 GMT + - Wed, 19 Oct 2022 21:44:02 GMT expires: - '-1' pragma: @@ -12359,12 +12875,10 @@ interactions: headers: cache-control: - no-cache - connection: - - close content-length: - '0' date: - - Tue, 18 Oct 2022 21:14:09 GMT + - Wed, 19 Oct 2022 21:43:55 GMT expires: - '-1' pragma: @@ -12409,7 +12923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:09 GMT + - Wed, 19 Oct 2022 21:43:56 GMT expires: - '-1' pragma: @@ -12448,17 +12962,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSeRk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3350' + - '3355' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:10 GMT + - Wed, 19 Oct 2022 21:43:57 GMT expires: - '-1' pragma: @@ -12477,14 +12991,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO9/kM=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSeRk=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", @@ -12515,7 +13029,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO9/kM=''}' + - '{''IF-MATCH'': ''AAAADHPSeRk=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: @@ -12524,15 +13038,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO9/kM=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSeRk=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}]}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTE4YzcwYjgtODM4Mi00MGYyLTg5NGMtNDRiOTk2Mjg3ZDBjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjk3YTdhM2EtZTZkMi00YzgzLTk2ZGUtYjlkZDJhYWZkOTAxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -12540,7 +13054,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:13 GMT + - Wed, 19 Oct 2022 21:44:00 GMT expires: - '-1' pragma: @@ -12572,7 +13086,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTE4YzcwYjgtODM4Mi00MGYyLTg5NGMtNDRiOTk2Mjg3ZDBjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjk3YTdhM2EtZTZkMi00YzgzLTk2ZGUtYjlkZDJhYWZkOTAxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -12584,7 +13098,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:13 GMT + - Wed, 19 Oct 2022 21:44:01 GMT expires: - '-1' pragma: @@ -12618,7 +13132,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOTE4YzcwYjgtODM4Mi00MGYyLTg5NGMtNDRiOTk2Mjg3ZDBjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYjk3YTdhM2EtZTZkMi00YzgzLTk2ZGUtYjlkZDJhYWZkOTAxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -12630,7 +13144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:43 GMT + - Wed, 19 Oct 2022 21:44:31 GMT expires: - '-1' pragma: @@ -12667,17 +13181,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+ABE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSe84=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3350' + - '3355' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:44 GMT + - Wed, 19 Oct 2022 21:44:32 GMT expires: - '-1' pragma: @@ -12721,7 +13235,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:14:45 GMT + - Wed, 19 Oct 2022 21:44:33 GMT expires: - '-1' pragma: @@ -12766,7 +13280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:45 GMT + - Wed, 19 Oct 2022 21:44:34 GMT expires: - '-1' pragma: @@ -12782,7 +13296,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -12805,17 +13319,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+ABE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSe84=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3350' + - '3355' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:46 GMT + - Wed, 19 Oct 2022 21:44:34 GMT expires: - '-1' pragma: @@ -12834,14 +13348,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+ABE=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSe84=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", @@ -12872,7 +13386,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO+ABE=''}' + - '{''IF-MATCH'': ''AAAADHPSe84=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: @@ -12881,15 +13395,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+ABE=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSe84=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}]}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWVmY2FjMDktNWVmZS00YjIzLWFhMGItNGFmYTNiN2QzZDRmO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2VlZmIyOTYtODZkNS00ZjhkLWFkNjMtNjgyZDM0MzFhMjQxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -12897,7 +13411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:49 GMT + - Wed, 19 Oct 2022 21:44:38 GMT expires: - '-1' pragma: @@ -12929,7 +13443,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWVmY2FjMDktNWVmZS00YjIzLWFhMGItNGFmYTNiN2QzZDRmO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2VlZmIyOTYtODZkNS00ZjhkLWFkNjMtNjgyZDM0MzFhMjQxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -12941,7 +13455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:14:50 GMT + - Wed, 19 Oct 2022 21:44:38 GMT expires: - '-1' pragma: @@ -12975,7 +13489,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWVmY2FjMDktNWVmZS00YjIzLWFhMGItNGFmYTNiN2QzZDRmO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2VlZmIyOTYtODZkNS00ZjhkLWFkNjMtNjgyZDM0MzFhMjQxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -12987,7 +13501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:15:19 GMT + - Wed, 19 Oct 2022 21:45:08 GMT expires: - '-1' pragma: @@ -13024,17 +13538,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+AYg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSfPY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3352' + - '3357' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:15:21 GMT + - Wed, 19 Oct 2022 21:45:09 GMT expires: - '-1' pragma: @@ -13078,7 +13592,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:15:21 GMT + - Wed, 19 Oct 2022 21:45:09 GMT expires: - '-1' pragma: @@ -13123,7 +13637,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:15:21 GMT + - Wed, 19 Oct 2022 21:45:09 GMT expires: - '-1' pragma: @@ -13162,17 +13676,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+AYg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSfPY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3352' + - '3357' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:15:22 GMT + - Wed, 19 Oct 2022 21:45:10 GMT expires: - '-1' pragma: @@ -13191,14 +13705,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+AYg=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSfPY=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", @@ -13229,7 +13743,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO+AYg=''}' + - '{''IF-MATCH'': ''AAAADHPSfPY=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: @@ -13238,15 +13752,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+AYg=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSfPY=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}]}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDE0ZjJjNzMtYzM2OC00OWVkLTlhZjMtZDAyNTE0ZGJhMzM2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGViNzc4OTEtMDE4NS00YmFiLWJiNTQtZjgyZDc0MjZjZTRmO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -13254,7 +13768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:15:26 GMT + - Wed, 19 Oct 2022 21:45:14 GMT expires: - '-1' pragma: @@ -13286,7 +13800,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDE0ZjJjNzMtYzM2OC00OWVkLTlhZjMtZDAyNTE0ZGJhMzM2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGViNzc4OTEtMDE4NS00YmFiLWJiNTQtZjgyZDc0MjZjZTRmO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -13298,7 +13812,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:15:26 GMT + - Wed, 19 Oct 2022 21:45:14 GMT expires: - '-1' pragma: @@ -13332,7 +13846,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMDE0ZjJjNzMtYzM2OC00OWVkLTlhZjMtZDAyNTE0ZGJhMzM2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGViNzc4OTEtMDE4NS00YmFiLWJiNTQtZjgyZDc0MjZjZTRmO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -13344,7 +13858,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:15:57 GMT + - Wed, 19 Oct 2022 21:45:44 GMT expires: - '-1' pragma: @@ -13381,17 +13895,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+A/w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSfu4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3357' + - '3362' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:15:58 GMT + - Wed, 19 Oct 2022 21:45:44 GMT expires: - '-1' pragma: @@ -13435,7 +13949,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:15:58 GMT + - Wed, 19 Oct 2022 21:45:45 GMT expires: - '-1' pragma: @@ -13480,7 +13994,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:15:59 GMT + - Wed, 19 Oct 2022 21:45:46 GMT expires: - '-1' pragma: @@ -13519,17 +14033,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+A/w=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSfu4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3357' + - '3362' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:15:59 GMT + - Wed, 19 Oct 2022 21:45:46 GMT expires: - '-1' pragma: @@ -13548,14 +14062,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+A/w=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSfu4=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", @@ -13586,7 +14100,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO+A/w=''}' + - '{''IF-MATCH'': ''AAAADHPSfu4=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: @@ -13595,15 +14109,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+A/w=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSfu4=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}]}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODgxNWI5ZGMtOTA4Yi00ZWMyLWE1ODYtOTRmYmY0ZWNhMDMyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTQ2Zjg1OGItOTYxNS00ZThjLWFhYzMtODRjZTU4ODZjZDFjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -13611,7 +14125,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:16:03 GMT + - Wed, 19 Oct 2022 21:45:50 GMT expires: - '-1' pragma: @@ -13643,7 +14157,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODgxNWI5ZGMtOTA4Yi00ZWMyLWE1ODYtOTRmYmY0ZWNhMDMyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTQ2Zjg1OGItOTYxNS00ZThjLWFhYzMtODRjZTU4ODZjZDFjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -13655,7 +14169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:16:03 GMT + - Wed, 19 Oct 2022 21:45:50 GMT expires: - '-1' pragma: @@ -13689,7 +14203,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODgxNWI5ZGMtOTA4Yi00ZWMyLWE1ODYtOTRmYmY0ZWNhMDMyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMTQ2Zjg1OGItOTYxNS00ZThjLWFhYzMtODRjZTU4ODZjZDFjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -13701,7 +14215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:16:33 GMT + - Wed, 19 Oct 2022 21:46:20 GMT expires: - '-1' pragma: @@ -13738,17 +14252,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+B4c=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceJobLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSgW8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceJobLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3360' + - '3365' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:16:34 GMT + - Wed, 19 Oct 2022 21:46:21 GMT expires: - '-1' pragma: @@ -13792,7 +14306,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:16:34 GMT + - Wed, 19 Oct 2022 21:46:22 GMT expires: - '-1' pragma: @@ -13837,7 +14351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:16:35 GMT + - Wed, 19 Oct 2022 21:46:22 GMT expires: - '-1' pragma: @@ -13853,7 +14367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -13876,17 +14390,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+B4c=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceJobLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSgW8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceJobLifecycleEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3360' + - '3365' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:16:36 GMT + - Wed, 19 Oct 2022 21:46:23 GMT expires: - '-1' pragma: @@ -13905,14 +14419,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+B4c=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSgW8=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", @@ -13943,7 +14457,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO+B4c=''}' + - '{''IF-MATCH'': ''AAAADHPSgW8=''}' ParameterSetName: - --hub-name -g -n -s User-Agent: @@ -13952,15 +14466,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+B4c=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSgW8=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}]}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTdlYTJiZTMtODA3OS00MTViLThmYjktNDIyMmJjYzBmNzhkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTJiNzliZDctOWVhYy00MDUwLTgwZjMtZjE5ZGNhMWFlMzE5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -13968,7 +14482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:16:39 GMT + - Wed, 19 Oct 2022 21:46:27 GMT expires: - '-1' pragma: @@ -14000,7 +14514,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTdlYTJiZTMtODA3OS00MTViLThmYjktNDIyMmJjYzBmNzhkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTJiNzliZDctOWVhYy00MDUwLTgwZjMtZjE5ZGNhMWFlMzE5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -14012,7 +14526,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:16:40 GMT + - Wed, 19 Oct 2022 21:46:27 GMT expires: - '-1' pragma: @@ -14046,7 +14560,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTdlYTJiZTMtODA3OS00MTViLThmYjktNDIyMmJjYzBmNzhkO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNTJiNzliZDctOWVhYy00MDUwLTgwZjMtZjE5ZGNhMWFlMzE5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -14058,7 +14572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:17:10 GMT + - Wed, 19 Oct 2022 21:46:58 GMT expires: - '-1' pragma: @@ -14095,17 +14609,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Cnk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceConnectionStateEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPShF4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceConnectionStateEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3363' + - '3368' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:17:11 GMT + - Wed, 19 Oct 2022 21:46:59 GMT expires: - '-1' pragma: @@ -14149,7 +14663,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:17:11 GMT + - Wed, 19 Oct 2022 21:46:59 GMT expires: - '-1' pragma: @@ -14194,7 +14708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:17:12 GMT + - Wed, 19 Oct 2022 21:47:00 GMT expires: - '-1' pragma: @@ -14233,17 +14747,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Cnk=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceConnectionStateEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPShF4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceConnectionStateEvents","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3363' + - '3368' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:17:13 GMT + - Wed, 19 Oct 2022 21:47:00 GMT expires: - '-1' pragma: @@ -14262,14 +14776,14 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+Cnk=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPShF4=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": - {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "4471891c-870c-4e16-8158-db18899266f8", - "connectionString": "Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", + {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [{"id": "75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78", + "connectionString": "Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006", "name": "Event1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", - "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", + "resourceGroup": "clitest.rg000001"}], "storageContainers": [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", @@ -14298,7 +14812,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO+Cnk=''}' + - '{''IF-MATCH'': ''AAAADHPShF4=''}' ParameterSetName: - --hub-name -g User-Agent: @@ -14307,15 +14821,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Cnk=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPShF4=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=mock_key;","containerName":"iothubcontainer1000004"}]}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjMxNDRlMWEtMGJiMi00NzcxLTlhODMtOGZjNzg1ZTY3OGIxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzM0NjNmMTEtODEwNC00NzRkLTliNzAtY2M0YTJlZDVhZTU3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -14323,7 +14837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:17:16 GMT + - Wed, 19 Oct 2022 21:47:04 GMT expires: - '-1' pragma: @@ -14355,7 +14869,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjMxNDRlMWEtMGJiMi00NzcxLTlhODMtOGZjNzg1ZTY3OGIxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzM0NjNmMTEtODEwNC00NzRkLTliNzAtY2M0YTJlZDVhZTU3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -14367,7 +14881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:17:17 GMT + - Wed, 19 Oct 2022 21:47:04 GMT expires: - '-1' pragma: @@ -14401,7 +14915,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjMxNDRlMWEtMGJiMi00NzcxLTlhODMtOGZjNzg1ZTY3OGIxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYzM0NjNmMTEtODEwNC00NzRkLTliNzAtY2M0YTJlZDVhZTU3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -14413,7 +14927,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:17:46 GMT + - Wed, 19 Oct 2022 21:47:34 GMT expires: - '-1' pragma: @@ -14450,17 +14964,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+DXQ=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPShq8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3244' + - '3249' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:17:47 GMT + - Wed, 19 Oct 2022 21:47:35 GMT expires: - '-1' pragma: @@ -14504,7 +15018,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:17:48 GMT + - Wed, 19 Oct 2022 21:47:35 GMT expires: - '-1' pragma: @@ -14549,7 +15063,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:17:49 GMT + - Wed, 19 Oct 2022 21:47:45 GMT expires: - '-1' pragma: @@ -14588,17 +15102,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+DXQ=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest14bwo7qr.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"4471891c-870c-4e16-8158-db18899266f8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPShq8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://ehnamespaceiothubfortest1y3a4njj.servicebus.windows.net:5671/;SharedAccessKeyName=eventHubPolicyiothubfortest;SharedAccessKey=****;EntityPath=eventHubiothubfortest000006","name":"Event1","id":"75f8d836-e8b3-4ab9-a7d1-a6fc34d31e78","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '3244' + - '3249' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:17:49 GMT + - Wed, 19 Oct 2022 21:47:46 GMT expires: - '-1' pragma: @@ -14617,12 +15131,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+DXQ=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPShq8=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": - [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": @@ -14650,7 +15164,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO+DXQ=''}' + - '{''IF-MATCH'': ''AAAADHPShq8=''}' ParameterSetName: - --hub-name -g -n User-Agent: @@ -14659,15 +15173,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+DXQ=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPShq8=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2NlNDRmZDMtY2E0MS00NmEwLTgzZDUtYjBjZjE0M2M5MzA3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDg5YjZlYWQtYTc2OC00MzYzLTlkYmEtMWM1ZTZmZTlhNTdjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -14675,7 +15189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:17:53 GMT + - Wed, 19 Oct 2022 21:47:50 GMT expires: - '-1' pragma: @@ -14707,7 +15221,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2NlNDRmZDMtY2E0MS00NmEwLTgzZDUtYjBjZjE0M2M5MzA3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDg5YjZlYWQtYTc2OC00MzYzLTlkYmEtMWM1ZTZmZTlhNTdjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -14719,7 +15233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:17:53 GMT + - Wed, 19 Oct 2022 21:47:50 GMT expires: - '-1' pragma: @@ -14753,7 +15267,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfM2NlNDRmZDMtY2E0MS00NmEwLTgzZDUtYjBjZjE0M2M5MzA3O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZDg5YjZlYWQtYTc2OC00MzYzLTlkYmEtMWM1ZTZmZTlhNTdjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -14765,7 +15279,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:18:23 GMT + - Wed, 19 Oct 2022 21:48:20 GMT expires: - '-1' pragma: @@ -14802,17 +15316,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+EPc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSiLk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2887' + - '2892' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:18:24 GMT + - Wed, 19 Oct 2022 21:48:21 GMT expires: - '-1' pragma: @@ -14849,8 +15363,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?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-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+EPc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":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-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSiLk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":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 @@ -14859,7 +15373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:18:25 GMT + - Wed, 19 Oct 2022 21:48:13 GMT expires: - '-1' pragma: @@ -14903,7 +15417,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:18:25 GMT + - Wed, 19 Oct 2022 21:48:14 GMT expires: - '-1' pragma: @@ -14948,7 +15462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:18:26 GMT + - Wed, 19 Oct 2022 21:48:15 GMT expires: - '-1' pragma: @@ -14987,17 +15501,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+EPc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSiLk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2887' + - '2892' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:18:27 GMT + - Wed, 19 Oct 2022 21:48:15 GMT expires: - '-1' pragma: @@ -15016,12 +15530,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+EPc=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSiLk=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": - [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": @@ -15051,7 +15565,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO+EPc=''}' + - '{''IF-MATCH'': ''AAAADHPSiLk=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: @@ -15063,7 +15577,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: - 892fe0fc-1ae5-43c2-b625-21a6bd466d81, timestamp: 2022-10-18 21:18:30Z, errorcode: + 392bc964-35ae-4866-b006-aa5e9793f37d, timestamp: 2022-10-19 21:48:19Z, errorcode: IH400131."}' headers: cache-control: @@ -15073,7 +15587,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:18:29 GMT + - Wed, 19 Oct 2022 21:48:18 GMT expires: - '-1' pragma: @@ -15115,7 +15629,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:18:29 GMT + - Wed, 19 Oct 2022 21:48:19 GMT expires: - '-1' pragma: @@ -15160,7 +15674,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:18:31 GMT + - Wed, 19 Oct 2022 21:48:19 GMT expires: - '-1' pragma: @@ -15199,17 +15713,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+EPc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSiLk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2887' + - '2892' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:18:32 GMT + - Wed, 19 Oct 2022 21:48:20 GMT expires: - '-1' pragma: @@ -15228,12 +15742,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+EPc=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSiLk=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": - [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": @@ -15262,7 +15776,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO+EPc=''}' + - '{''IF-MATCH'': ''AAAADHPSiLk=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: @@ -15271,15 +15785,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+EPc=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSiLk=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODcwZjFlZGYtM2IwNi00MGEzLWIxMDctYjU1MTQxMzA5ZmRiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWYwMTdhMTQtYTU0Ni00ZjNhLWI4MDUtOWYzMjQ3ODdkODYyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -15287,7 +15801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:18:36 GMT + - Wed, 19 Oct 2022 21:48:23 GMT expires: - '-1' pragma: @@ -15319,7 +15833,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODcwZjFlZGYtM2IwNi00MGEzLWIxMDctYjU1MTQxMzA5ZmRiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWYwMTdhMTQtYTU0Ni00ZjNhLWI4MDUtOWYzMjQ3ODdkODYyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -15331,7 +15845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:18:36 GMT + - Wed, 19 Oct 2022 21:48:23 GMT expires: - '-1' pragma: @@ -15365,7 +15879,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfODcwZjFlZGYtM2IwNi00MGEzLWIxMDctYjU1MTQxMzA5ZmRiO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNWYwMTdhMTQtYTU0Ni00ZjNhLWI4MDUtOWYzMjQ3ODdkODYyO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -15377,7 +15891,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:06 GMT + - Wed, 19 Oct 2022 21:48:54 GMT expires: - '-1' pragma: @@ -15414,17 +15928,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+FW0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSjAc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2960' + - '2965' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:06 GMT + - Wed, 19 Oct 2022 21:48:55 GMT expires: - '-1' pragma: @@ -15468,7 +15982,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:19:06 GMT + - Wed, 19 Oct 2022 21:48:55 GMT expires: - '-1' pragma: @@ -15513,7 +16027,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:08 GMT + - Wed, 19 Oct 2022 21:48:56 GMT expires: - '-1' pragma: @@ -15552,17 +16066,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+FW0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSjAc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2960' + - '2965' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:09 GMT + - Wed, 19 Oct 2022 21:48:57 GMT expires: - '-1' pragma: @@ -15606,7 +16120,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:19:09 GMT + - Wed, 19 Oct 2022 21:48:57 GMT expires: - '-1' pragma: @@ -15651,7 +16165,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:09 GMT + - Wed, 19 Oct 2022 21:48:57 GMT expires: - '-1' pragma: @@ -15667,7 +16181,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -15690,17 +16204,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+FW0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSjAc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2960' + - '2965' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:10 GMT + - Wed, 19 Oct 2022 21:48:58 GMT expires: - '-1' pragma: @@ -15719,12 +16233,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+FW0=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSjAc=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": - [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": @@ -15754,7 +16268,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO+FW0=''}' + - '{''IF-MATCH'': ''AAAADHPSjAc=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: @@ -15766,7 +16280,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: - 6284c938-fc7a-4c61-9daf-8a08b9d70250, timestamp: 2022-10-18 21:19:13Z, errorcode: + 08798015-1dee-42a5-a6d9-f2f9ce031a98, timestamp: 2022-10-19 21:49:02Z, errorcode: IH400131."}' headers: cache-control: @@ -15776,7 +16290,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:12 GMT + - Wed, 19 Oct 2022 21:49:01 GMT expires: - '-1' pragma: @@ -15818,7 +16332,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:19:13 GMT + - Wed, 19 Oct 2022 21:49:02 GMT expires: - '-1' pragma: @@ -15863,7 +16377,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:13 GMT + - Wed, 19 Oct 2022 21:49:02 GMT expires: - '-1' pragma: @@ -15902,17 +16416,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+FW0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSjAc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2960' + - '2965' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:14 GMT + - Wed, 19 Oct 2022 21:49:03 GMT expires: - '-1' pragma: @@ -15931,12 +16445,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+FW0=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSjAc=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": - [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": @@ -15965,7 +16479,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO+FW0=''}' + - '{''IF-MATCH'': ''AAAADHPSjAc=''}' ParameterSetName: - -n -g --key --value --endpoints User-Agent: @@ -15974,15 +16488,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+FW0=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSjAc=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGE0NDJlNDItODg3NS00YjAwLTgzZTktYTI4MGZhYTE5OTQzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmJmZGNiMzEtYTNlMy00ZWJmLTlkZGItNTdhYjdmMjc1NjM2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -15990,7 +16504,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:18 GMT + - Wed, 19 Oct 2022 21:49:07 GMT expires: - '-1' pragma: @@ -16022,7 +16536,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGE0NDJlNDItODg3NS00YjAwLTgzZTktYTI4MGZhYTE5OTQzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmJmZGNiMzEtYTNlMy00ZWJmLTlkZGItNTdhYjdmMjc1NjM2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -16034,7 +16548,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:18 GMT + - Wed, 19 Oct 2022 21:49:07 GMT expires: - '-1' pragma: @@ -16068,7 +16582,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfZGE0NDJlNDItODg3NS00YjAwLTgzZTktYTI4MGZhYTE5OTQzO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfYmJmZGNiMzEtYTNlMy00ZWJmLTlkZGItNTdhYjdmMjc1NjM2O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -16080,7 +16594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:49 GMT + - Wed, 19 Oct 2022 21:49:37 GMT expires: - '-1' pragma: @@ -16117,17 +16631,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GD0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSjyk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2960' + - '2965' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:49 GMT + - Wed, 19 Oct 2022 21:49:38 GMT expires: - '-1' pragma: @@ -16171,7 +16685,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:19:50 GMT + - Wed, 19 Oct 2022 21:49:39 GMT expires: - '-1' pragma: @@ -16216,7 +16730,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:50 GMT + - Wed, 19 Oct 2022 21:49:39 GMT expires: - '-1' pragma: @@ -16255,17 +16769,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GD0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSjyk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2960' + - '2965' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:51 GMT + - Wed, 19 Oct 2022 21:49:40 GMT expires: - '-1' pragma: @@ -16309,7 +16823,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:19:51 GMT + - Wed, 19 Oct 2022 21:49:41 GMT expires: - '-1' pragma: @@ -16354,7 +16868,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:52 GMT + - Wed, 19 Oct 2022 21:49:41 GMT expires: - '-1' pragma: @@ -16393,17 +16907,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GD0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSjyk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2960' + - '2965' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:53 GMT + - Wed, 19 Oct 2022 21:49:42 GMT expires: - '-1' pragma: @@ -16447,7 +16961,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:19:53 GMT + - Wed, 19 Oct 2022 21:49:42 GMT expires: - '-1' pragma: @@ -16492,7 +17006,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:53 GMT + - Wed, 19 Oct 2022 21:49:43 GMT expires: - '-1' pragma: @@ -16531,17 +17045,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GD0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSjyk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"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;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2960' + - '2965' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:54 GMT + - Wed, 19 Oct 2022 21:49:44 GMT expires: - '-1' pragma: @@ -16560,12 +17074,12 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHO+GD0=", + body: '{"location": "westus2", "tags": {"e": "f", "g": "h"}, "etag": "AAAADHPSjyk=", "properties": {"disableLocalAuth": false, "disableDeviceSAS": false, "disableModuleSAS": false, "allowedFqdnList": [], "ipFilterRules": [], "minTlsVersion": "1.2", "eventHubEndpoints": {"events": {"retentionTimeInDays": 4, "partitionCount": 4}}, "routing": {"endpoints": {"serviceBusQueues": [], "serviceBusTopics": [], "eventHubs": [], "storageContainers": - [{"id": "a795f2d6-e281-4af5-943c-4fb2143ff045", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", + [{"id": "1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72", "connectionString": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****", "name": "Storage1", "subscriptionId": "a386d5ea-ea90-441a-8263-d816368c84a1", "resourceGroup": "clitest.rg000001", "containerName": "iothubcontainer1000004", "fileNameFormat": "{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}", "batchFrequencyInSeconds": @@ -16594,7 +17108,7 @@ interactions: Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADHO+GD0=''}' + - '{''IF-MATCH'': ''AAAADHPSjyk=''}' ParameterSetName: - -n -g --key User-Agent: @@ -16603,15 +17117,15 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GD0=","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-11ys5vm5-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5caa51c4-88fe-435f-bbc5-944039fcdab2-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-1cc8b278-104a-44c2-b020-d2a2be2647b1-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 18 Oct 2022 21:02:06 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:02:06 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 18 Oct 2022 21:10:34 GMT","ModifiedTime":"Tue, 18 Oct 2022 21:10:34 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSjyk=","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-11bccyn6-operationmonitoring","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-5e990994-da89-49ab-bb29-a78bf821712d-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-3fc0df97-10b8-4b2b-ae23-4f1f473333b4-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 21:30:51 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:30:51 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 21:39:29 GMT","ModifiedTime":"Wed, 19 Oct 2022 21:39:29 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjNhZTcwMTMtYjM0My00NGY4LTgzMGMtZDE2ZWEwOGVhNGM4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMThmOTA3NGEtM2I4NS00NGYyLTliZDAtZjczOWE1YTg2MWFjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -16619,7 +17133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:58 GMT + - Wed, 19 Oct 2022 21:49:47 GMT expires: - '-1' pragma: @@ -16651,7 +17165,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjNhZTcwMTMtYjM0My00NGY4LTgzMGMtZDE2ZWEwOGVhNGM4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMThmOTA3NGEtM2I4NS00NGYyLTliZDAtZjczOWE1YTg2MWFjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -16663,7 +17177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:19:58 GMT + - Wed, 19 Oct 2022 21:49:47 GMT expires: - '-1' pragma: @@ -16697,7 +17211,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNjNhZTcwMTMtYjM0My00NGY4LTgzMGMtZDE2ZWEwOGVhNGM4O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfMThmOTA3NGEtM2I4NS00NGYyLTliZDAtZjczOWE1YTg2MWFjO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -16709,7 +17223,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:20:29 GMT + - Wed, 19 Oct 2022 21:50:18 GMT expires: - '-1' pragma: @@ -16746,17 +17260,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GrE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSkME=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2904' + - '2909' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:20:30 GMT + - Wed, 19 Oct 2022 21:50:18 GMT expires: - '-1' pragma: @@ -16800,7 +17314,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:20:30 GMT + - Wed, 19 Oct 2022 21:50:19 GMT expires: - '-1' pragma: @@ -16845,7 +17359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:20:31 GMT + - Wed, 19 Oct 2022 21:50:20 GMT expires: - '-1' pragma: @@ -16884,17 +17398,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+GrE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-59277963f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSkME=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-910edebff5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2904' + - '2909' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:20:32 GMT + - Wed, 19 Oct 2022 21:50:21 GMT expires: - '-1' pragma: @@ -16938,7 +17452,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -16946,11 +17460,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:20:34 GMT + - Wed, 19 Oct 2022 21:50:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other pragma: - no-cache server: @@ -16980,7 +17494,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -16992,7 +17506,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:20:34 GMT + - Wed, 19 Oct 2022 21:50:22 GMT expires: - '-1' pragma: @@ -17026,7 +17540,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17038,7 +17552,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:21:04 GMT + - Wed, 19 Oct 2022 21:50:52 GMT expires: - '-1' pragma: @@ -17072,7 +17586,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17084,7 +17598,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:21:34 GMT + - Wed, 19 Oct 2022 21:51:22 GMT expires: - '-1' pragma: @@ -17118,7 +17632,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17130,7 +17644,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:22:04 GMT + - Wed, 19 Oct 2022 21:51:52 GMT expires: - '-1' pragma: @@ -17164,7 +17678,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17176,7 +17690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:22:35 GMT + - Wed, 19 Oct 2022 21:52:23 GMT expires: - '-1' pragma: @@ -17210,7 +17724,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17222,7 +17736,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:23:04 GMT + - Wed, 19 Oct 2022 21:52:53 GMT expires: - '-1' pragma: @@ -17256,7 +17770,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17268,7 +17782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:23:35 GMT + - Wed, 19 Oct 2022 21:53:23 GMT expires: - '-1' pragma: @@ -17302,7 +17816,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17314,7 +17828,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:24:05 GMT + - Wed, 19 Oct 2022 21:53:53 GMT expires: - '-1' pragma: @@ -17348,7 +17862,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17360,7 +17874,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:24:35 GMT + - Wed, 19 Oct 2022 21:54:23 GMT expires: - '-1' pragma: @@ -17394,7 +17908,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17406,7 +17920,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:25:05 GMT + - Wed, 19 Oct 2022 21:54:53 GMT expires: - '-1' pragma: @@ -17440,7 +17954,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17452,7 +17966,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:25:36 GMT + - Wed, 19 Oct 2022 21:55:23 GMT expires: - '-1' pragma: @@ -17486,7 +18000,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17498,7 +18012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:26:05 GMT + - Wed, 19 Oct 2022 21:55:53 GMT expires: - '-1' pragma: @@ -17532,7 +18046,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17544,7 +18058,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:26:35 GMT + - Wed, 19 Oct 2022 21:56:23 GMT expires: - '-1' pragma: @@ -17578,7 +18092,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17590,7 +18104,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:27:06 GMT + - Wed, 19 Oct 2022 21:56:53 GMT expires: - '-1' pragma: @@ -17624,7 +18138,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17636,7 +18150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:27:35 GMT + - Wed, 19 Oct 2022 21:57:24 GMT expires: - '-1' pragma: @@ -17670,7 +18184,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17682,7 +18196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:28:06 GMT + - Wed, 19 Oct 2022 21:57:54 GMT expires: - '-1' pragma: @@ -17716,7 +18230,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17728,7 +18242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:28:36 GMT + - Wed, 19 Oct 2022 21:58:24 GMT expires: - '-1' pragma: @@ -17762,7 +18276,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17774,7 +18288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:29:06 GMT + - Wed, 19 Oct 2022 21:58:54 GMT expires: - '-1' pragma: @@ -17808,7 +18322,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17820,7 +18334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:29:36 GMT + - Wed, 19 Oct 2022 21:59:24 GMT expires: - '-1' pragma: @@ -17854,7 +18368,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -17866,7 +18380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:30:06 GMT + - Wed, 19 Oct 2022 21:59:54 GMT expires: - '-1' pragma: @@ -17900,7 +18414,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -17912,7 +18426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:30:37 GMT + - Wed, 19 Oct 2022 22:00:24 GMT expires: - '-1' pragma: @@ -17946,7 +18460,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other response: body: string: '' @@ -17956,11 +18470,11 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:30:37 GMT + - Wed, 19 Oct 2022 22:00:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGU2YTFiNzUtMTczMS00M2QwLTlkNWMtODUxZDc5MWUwZjk5O3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNDBjNjlhMWItOTkyZi00NjFhLWI2NzUtN2JlODUzNWU0ZDMxO3JlZ2lvbj13ZXN0dXMy?api-version=2022-04-30-preview&operationSource=other pragma: - no-cache server: @@ -17998,7 +18512,7 @@ interactions: content-length: - '0' date: - - Tue, 18 Oct 2022 21:30:37 GMT + - Wed, 19 Oct 2022 22:00:25 GMT expires: - '-1' pragma: @@ -18043,7 +18557,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:30:38 GMT + - Wed, 19 Oct 2022 22:00:25 GMT expires: - '-1' pragma: @@ -18082,17 +18596,17 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Myw=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-7e8e2e0f44.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSsVk=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-88e23a3690.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}}' headers: cache-control: - no-cache content-length: - - '2904' + - '2909' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:30:39 GMT + - Wed, 19 Oct 2022 22:00:26 GMT expires: - '-1' pragma: @@ -18129,7 +18643,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -18159,7 +18673,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -18167,8 +18682,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -18180,7 +18695,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -18203,7 +18718,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -18219,14 +18734,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -18248,38 +18764,42 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Myw=","properties":{"locations":[{"location":"West - Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11ys5vm5","endpoint":"sb://iothub-ns-iot-hub-fo-22327747-7e8e2e0f44.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"a795f2d6-e281-4af5-943c-4fb2143ff045","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:00:27.16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-da74b9f45823435394c13ceab3f49960","name":"test-hub-da74b9f45823435394c13ceab3f49960","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"81 - Test IoT Hub - config, core and jobs Python38 181dabdb-4055-58ff-c7bd-8011e0b92875","test_hub_monitor_events":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+JwE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-da74b9f45823435394c13ceab3f49960.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-da74b9f458234353","endpoint":"sb://iothub-ns-test-hub-d-22328069-ee89558e4f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:17:35.0766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-7cfc5a5b357e4c3aa9533857b5b65ba7","name":"test-hub-7cfc5a5b357e4c3aa9533857b5b65ba7","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"81 - Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_hub_monitor_events":"2"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+L2k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-7cfc5a5b357e4c3aa9533857b5b65ba7.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-7cfc5a5b357e4c3a","endpoint":"sb://iothub-ns-test-hub-7-22328074-2f4d97aed3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:17:41.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-6033c5207f5d48918f5f7d0f98076fca","name":"test-hub-6033c5207f5d48918f5f7d0f98076fca","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_configurations":"1","pipeline_id":"81 - Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_edge_deployments":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+Lss=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-6033c5207f5d48918f5f7d0f98076fca.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-6033c5207f5d4891","endpoint":"sb://iothub-ns-test-hub-6-22328075-e504e293fe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:17:41.5166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-813f2161868443f6acb1ae2806ebb566","name":"test-hub-813f2161868443f6acb1ae2806ebb566","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_connection_string_show":"3","pipeline_id":"81 - Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_iothub_generate_sas_token":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+M8A=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-813f2161868443f6acb1ae2806ebb566.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-813f2161868443f6","endpoint":"sb://iothub-ns-test-hub-8-22328076-6708920a84.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:17:41.7066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-dd9f372fe12c48a0936070439cd7d999","name":"test-hub-dd9f372fe12c48a0936070439cd7d999","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"81 - Test IoT Hub - config, core and jobs Python38 181dabdb-4055-58ff-c7bd-8011e0b92875","test_system_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+Lgw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-dd9f372fe12c48a0936070439cd7d999.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-dd9f372fe12c48a0","endpoint":"sb://iothub-ns-test-hub-d-22328083-ec5114bc62.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore0217.blob.core.windows.net/;FileEndpoint=https://hubstore0217.file.core.windows.net/;QueueEndpoint=https://hubstore0217.queue.core.windows.net/;TableEndpoint=https://hubstore0217.table.core.windows.net/;AccountName=hubstore0217;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"52f6009d-fc3d-48e0-909c-287f3ed80fde"},"systemData":{"createdAt":"2022-10-18T21:18:00.7666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0e02c304feb4b7c90c814a3bd4bf132","name":"test-hub-a0e02c304feb4b7c90c814a3bd4bf132","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"81 - Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_system_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+L+4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a0e02c304feb4b7c90c814a3bd4bf132.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a0e02c304feb4b7c","endpoint":"sb://iothub-ns-test-hub-a-22328084-3680f83a6b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore251b.blob.core.windows.net/;FileEndpoint=https://hubstore251b.file.core.windows.net/;QueueEndpoint=https://hubstore251b.queue.core.windows.net/;TableEndpoint=https://hubstore251b.table.core.windows.net/;AccountName=hubstore251b;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"5b5aad86-e917-4a94-9502-84abee090e31"},"systemData":{"createdAt":"2022-10-18T21:18:05.33Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-10ce8b6185aa4576b7b829c07d708421","name":"test-hub-10ce8b6185aa4576b7b829c07d708421","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_connection_string_show":"1","pipeline_id":"81 - Test IoT Hub - devices, messaging, modules and state Python38 433f2cac-6c40-527a-504a-b20010ce3960","test_iothub_device_generate_sas_token":"1","test_iothub_device_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+LLo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-10ce8b6185aa4576b7b829c07d708421.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-10ce8b6185aa4576","endpoint":"sb://iothub-ns-test-hub-1-22328085-8e55c15005.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:18.6066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f5f1a0aa96cb4385af1e1a60d05217e2","name":"test-hub-f5f1a0aa96cb4385af1e1a60d05217e2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_scope_on_create":"1","pipeline_id":"81 - Test IoT Hub - devices, messaging, modules and state Python38 433f2cac-6c40-527a-504a-b20010ce3960","test_iothub_edge_device_parent_scope_on_create":"1","test_iothub_nested_edge":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+KgM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-f5f1a0aa96cb4385af1e1a60d05217e2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-f5f1a0aa96cb4385","endpoint":"sb://iothub-ns-test-hub-f-22328086-2bf6e96aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:18.75Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-7aea30ebfa464b11b70ae922705dd324","name":"test-hub-7aea30ebfa464b11b70ae922705dd324","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_module_connection_string_show":"1","pipeline_id":"81 - Test IoT Hub - devices, messaging, modules and state Python38 433f2cac-6c40-527a-504a-b20010ce3960","test_iothub_module_generate_sas_token":"1","test_iothub_module_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+K4k=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-7aea30ebfa464b11b70ae922705dd324.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-7aea30ebfa464b11","endpoint":"sb://iothub-ns-test-hub-7-22328093-9f1c94a127.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:20.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e8e028b4e9eb4973b9dd7a9a8e8f4a5a","name":"test-hub-e8e028b4e9eb4973b9dd7a9a8e8f4a5a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_connection_string_show":"1","pipeline_id":"81 - Test IoT Hub - devices, messaging, modules and state Python37 972448a5-d3b3-5e41-ccf5-40735d33ce04","test_iothub_device_generate_sas_token":"1","test_iothub_device_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+MNI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-e8e028b4e9eb4973b9dd7a9a8e8f4a5a.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-e8e028b4e9eb4973","endpoint":"sb://iothub-ns-test-hub-e-22328094-eaa2ed9e50.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:20.6666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-84e72b52c92849488e6943bff2168d59","name":"test-hub-84e72b52c92849488e6943bff2168d59","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_scope_on_create":"1","pipeline_id":"81 - Test IoT Hub - devices, messaging, modules and state Python37 972448a5-d3b3-5e41-ccf5-40735d33ce04","test_iothub_edge_device_parent_scope_on_create":"1","test_iothub_nested_edge":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+K0s=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-84e72b52c92849488e6943bff2168d59.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-84e72b52c9284948","endpoint":"sb://iothub-ns-test-hub-8-22328099-fe9d9ea0a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:21.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-79c146007462405fa9410c1680eb9bf7","name":"test-hub-79c146007462405fa9410c1680eb9bf7","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_module_connection_string_show":"1","pipeline_id":"81 - Test IoT Hub - devices, messaging, modules and state Python37 972448a5-d3b3-5e41-ccf5-40735d33ce04","test_iothub_module_generate_sas_token":"1","test_iothub_module_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+Lq0=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-79c146007462405fa9410c1680eb9bf7.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-79c146007462405f","endpoint":"sb://iothub-ns-test-hub-7-22328100-8fb57d452a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:21.6333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-4d939b24ceaa4b","name":"test-hub-4d939b24ceaa4b","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+M3I=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-4d939b24ceaa4b.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-4d939b24ceaa4b","endpoint":"sb://iothub-ns-test-hub-4-22328201-6bd91284a6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep801ca0edbdf14d.blob.core.windows.net/;FileEndpoint=https://testhubdep801ca0edbdf14d.file.core.windows.net/;QueueEndpoint=https://testhubdep801ca0edbdf14d.queue.core.windows.net/;TableEndpoint=https://testhubdep801ca0edbdf14d.table.core.windows.net/;AccountName=testhubdep801ca0edbdf14d;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdba8ce215c1c4e":{"clientId":"f09cf361-031d-4269-a7e9-980a4fdd7036","principalId":"d3fbd85c-9f08-45cd-b91f-a08db8642b53"}},"principalId":"72f86813-b939-4696-80a2-6ae5b4bc02ee"},"systemData":{"createdAt":"2022-10-18T21:28:22.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-7cba711b544043","name":"test-hub-7cba711b544043","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+L14=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep347a55723bb24a.blob.core.windows.net/;FileEndpoint=https://testhubdep347a55723bb24a.file.core.windows.net/;QueueEndpoint=https://testhubdep347a55723bb24a.queue.core.windows.net/;TableEndpoint=https://testhubdep347a55723bb24a.table.core.windows.net/;AccountName=testhubdep347a55723bb24a;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepce3af62147ad48":{"clientId":"3034fa8e-3bad-489b-8a0f-7962511111a1","principalId":"3f3b9b51-25e7-49cc-a782-8dd47bb383da"}},"principalId":"f82a4aa8-a5c4-4c51-9e8e-a8f67dad073c"},"systemData":{"createdAt":"2022-10-18T21:29:02.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f0cad9aa560c43","name":"test-hub-f0cad9aa560c43","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+NUs=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep801ca0edbdf14d.blob.core.windows.net/;FileEndpoint=https://testhubdep801ca0edbdf14d.file.core.windows.net/;QueueEndpoint=https://testhubdep801ca0edbdf14d.queue.core.windows.net/;TableEndpoint=https://testhubdep801ca0edbdf14d.table.core.windows.net/;AccountName=testhubdep801ca0edbdf14d;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdba8ce215c1c4e":{"clientId":"f09cf361-031d-4269-a7e9-980a4fdd7036","principalId":"d3fbd85c-9f08-45cd-b91f-a08db8642b53"}},"principalId":"0578eb73-d0da-40a0-baad-27f8aac9c3ee"},"systemData":{"createdAt":"2022-10-18T21:30:30.1933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11000003","name":"iot-hub-for-test-11000003","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPSsVk=","properties":{"locations":[{"location":"West + Central US","role":"primary"},{"location":"West US 2","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bccyn6","endpoint":"sb://iothub-ns-iot-hub-fo-22349306-88e23a3690.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":157286400,"encoding":"avro","name":"Storage1","id":"1eb52ec8-f7f3-4723-8a4b-b4429c8bcb72","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"clitest.rg000001"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitest000002.blob.core.windows.net/;FileEndpoint=https://clitest000002.file.core.windows.net/;QueueEndpoint=https://clitest000002.queue.core.windows.net/;TableEndpoint=https://clitest000002.table.core.windows.net/;AccountName=clitest000002;AccountKey=****","containerName":"iothubcontainer1000004"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:29:12.0833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","name":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"40 + Test IoT Hub - config, core and jobs Python37 018719aa-5a10-5b46-3517-fdf3ebf48dae","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1","test_twin_properties_update":"2"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSs4g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-012e1f6a3f3b45b4","endpoint":"sb://iothub-ns-test-hub-0-22349475-35377f34f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:44.3533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-87eb9f0e62e74db19af1053d12ce18f2","name":"test-hub-87eb9f0e62e74db19af1053d12ce18f2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1","test_twin_properties_update":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSr8c=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-87eb9f0e62e74db19af1053d12ce18f2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-87eb9f0e62e74db1","endpoint":"sb://iothub-ns-test-hub-8-22349528-99c21b2b0f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:41:06.2133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-df6bdfaed3f14b8c82059489502191b9","name":"test-hub-df6bdfaed3f14b8c82059489502191b9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_hub_monitor_feedback":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python38 181dabdb-4055-58ff-c7bd-8011e0b92875","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSs7I=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-df6bdfaed3f14b8c82059489502191b9.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-df6bdfaed3f14b8c","endpoint":"sb://iothub-ns-test-hub-d-22349641-f8e6b84310.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:48:04.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-19d4b76f541f46cc8f4eec38a38a4c8d","name":"test-hub-19d4b76f541f46cc8f4eec38a38a4c8d","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSqmw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-19d4b76f541f46cc8f4eec38a38a4c8d.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-19d4b76f541f46cc","endpoint":"sb://iothub-ns-test-hub-1-22349743-34887b1fe3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:55:56.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a962951112104ab5b75a2d8a036833bf","name":"test-hub-a962951112104ab5b75a2d8a036833bf","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSqnQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a962951112104ab5b75a2d8a036833bf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a962951112104ab5","endpoint":"sb://iothub-ns-test-hub-a-22349744-4031869291.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:55:56.19Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-aeb4f1a24a34443ca93763753e2bdbb3","name":"test-hub-aeb4f1a24a34443ca93763753e2bdbb3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSqmQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-aeb4f1a24a34443ca93763753e2bdbb3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-aeb4f1a24a34443c","endpoint":"sb://iothub-ns-test-hub-a-22349745-3066269018.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:55:56.5Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-439d08c791fb47a1a978c70b158b8da9","name":"test-hub-439d08c791fb47a1a978c70b158b8da9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSq9A=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-439d08c791fb47a1a978c70b158b8da9.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-439d08c791fb47a1","endpoint":"sb://iothub-ns-test-hub-4-22349746-c956ba616e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:55:57.2333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-d252b39491804f27b4530c01e68d273f","name":"test-hub-d252b39491804f27b4530c01e68d273f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSq9M=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-d252b39491804f27b4530c01e68d273f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-d252b39491804f27","endpoint":"sb://iothub-ns-test-hub-d-22349747-88f8ade555.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:55:57.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-3ed01bfd2f694ab8870f9c98932f833a","name":"test-hub-3ed01bfd2f694ab8870f9c98932f833a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSqpM=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-3ed01bfd2f694ab8870f9c98932f833a.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-3ed01bfd2f694ab8","endpoint":"sb://iothub-ns-test-hub-3-22349748-8c62d5586c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:55:57.5466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f71e35ebb1214d6785f03b07e6a08e79","name":"test-hub-f71e35ebb1214d6785f03b07e6a08e79","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSrlE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-f71e35ebb1214d6785f03b07e6a08e79.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-f71e35ebb1214d67","endpoint":"sb://iothub-ns-test-hub-f-22349774-bf885e3925.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:57:17.3033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-510007db0b11418caf8e1e5e1ca668bf","name":"test-hub-510007db0b11418caf8e1e5e1ca668bf","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSrk4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-510007db0b11418caf8e1e5e1ca668bf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-510007db0b11418c","endpoint":"sb://iothub-ns-test-hub-5-22349775-8212917554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:57:17.3233333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-b5ced7edfc6b49f2a13cadb5a81f4234","name":"test-hub-b5ced7edfc6b49f2a13cadb5a81f4234","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSr74=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-b5ced7edfc6b49f2a13cadb5a81f4234.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-b5ced7edfc6b49f2","endpoint":"sb://iothub-ns-test-hub-b-22349776-ea93071c06.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:57:17.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-3d0e39ef43eb4f459a304353ed4cf9ec","name":"test-hub-3d0e39ef43eb4f459a304353ed4cf9ec","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSrm8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-3d0e39ef43eb4f459a304353ed4cf9ec.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-3d0e39ef43eb4f45","endpoint":"sb://iothub-ns-test-hub-3-22349777-5def760c7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:57:17.5166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-c15bc415007444b4ab3a7c18ba7a3fd5","name":"test-hub-c15bc415007444b4ab3a7c18ba7a3fd5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSsxY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c15bc415007444b4ab3a7c18ba7a3fd5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c15bc415007444b4","endpoint":"sb://iothub-ns-test-hub-c-22349778-210b82bc9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:57:18.4566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-019f4887b79f438da78590e470ed0475","name":"test-hub-019f4887b79f438da78590e470ed0475","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSsS4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-019f4887b79f438da78590e470ed0475.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-019f4887b79f438d","endpoint":"sb://iothub-ns-test-hub-0-22349779-9ea146a573.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:57:18.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8bff17faacf24a9babbe98f620a411ea","name":"test-hub-8bff17faacf24a9babbe98f620a411ea","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSq8A=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:58:27.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-d259f074444a4d8f9b0404d936399bfc","name":"test-hub-d259f074444a4d8f9b0404d936399bfc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSq9Y=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:58:28.0933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-0ab351de08db47779ece4826645e8cf1","name":"test-hub-0ab351de08db47779ece4826645e8cf1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSq9s=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:58:28.3666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-425ed87ebd864b079b8b4904065cbb62","name":"test-hub-425ed87ebd864b079b8b4904065cbb62","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSs9M=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-425ed87ebd864b079b8b4904065cbb62.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-425ed87ebd864b07","endpoint":"sb://iothub-ns-test-hub-4-22349806-d65e67a50b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:58:29.5033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-7e028a6dd3f0442893a9a2d501777b5b","name":"test-hub-7e028a6dd3f0442893a9a2d501777b5b","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSq/g=","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":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:58:29.6866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-3c39e986dd50469d9aa8635524ce298a","name":"test-hub-3c39e986dd50469d9aa8635524ce298a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSs8g=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-3c39e986dd50469d9aa8635524ce298a.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-3c39e986dd50469d","endpoint":"sb://iothub-ns-test-hub-3-22349808-2bf7d7e9dd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:58:30.4466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -18296,11 +18816,11 @@ interactions: cache-control: - no-cache content-length: - - '210920' + - '232620' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:30:48 GMT + - Wed, 19 Oct 2022 22:00:38 GMT expires: - '-1' pragma: @@ -18349,7 +18869,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzZlODdhYjctMTRmYS00ODU2LTk2NGQtMDg2M2Y0NzFjOTk0O3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGJhMDY2MjktMjI1MS00MzIxLWEzMWEtMGVkNzliMzk5Yjk4O3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -18357,11 +18877,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:30:51 GMT + - Wed, 19 Oct 2022 22:00:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzZlODdhYjctMTRmYS00ODU2LTk2NGQtMDg2M2Y0NzFjOTk0O3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2022-04-30-preview&operationSource=other + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGJhMDY2MjktMjI1MS00MzIxLWEzMWEtMGVkNzliMzk5Yjk4O3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2022-04-30-preview&operationSource=other pragma: - no-cache server: @@ -18391,7 +18911,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzZlODdhYjctMTRmYS00ODU2LTk2NGQtMDg2M2Y0NzFjOTk0O3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGJhMDY2MjktMjI1MS00MzIxLWEzMWEtMGVkNzliMzk5Yjk4O3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -18403,7 +18923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:30:51 GMT + - Wed, 19 Oct 2022 22:00:40 GMT expires: - '-1' pragma: @@ -18437,7 +18957,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfNzZlODdhYjctMTRmYS00ODU2LTk2NGQtMDg2M2Y0NzFjOTk0O3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus2/operationResults/aWQ9b3NfaWhfOGJhMDY2MjktMjI1MS00MzIxLWEzMWEtMGVkNzliMzk5Yjk4O3JlZ2lvbj13ZXN0Y2VudHJhbHVz?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -18449,7 +18969,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:31:21 GMT + - Wed, 19 Oct 2022 22:01:10 GMT expires: - '-1' pragma: @@ -18486,7 +19006,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-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":"2022-10-18T20:58:43Z"},"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":"2022-10-19T21:27:28Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -18495,7 +19015,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:31:21 GMT + - Wed, 19 Oct 2022 22:01:12 GMT expires: - '-1' pragma: @@ -18542,7 +19062,7 @@ interactions: string: '{"code":400059,"httpStatusCode":"BadRequest","message":"Requested IoT Hub features ''\"DataResidency\"'' not available in ''westus2'' region. If you contact a support representative please include this correlation identifier: - 6a498394-69f5-40d7-a734-8cc849f798d1, timestamp: 2022-10-18 21:31:24Z, errorcode: + e9850771-f27b-440a-b30b-dd94d1b1f573, timestamp: 2022-10-19 22:01:16Z, errorcode: IH400059."}' headers: cache-control: @@ -18552,7 +19072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:31:23 GMT + - Wed, 19 Oct 2022 22:01:15 GMT expires: - '-1' pragma: @@ -18601,7 +19121,7 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007","name":"dps-dr000007","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfY2JkYjM0NzAtOTA0Zi00NzQxLWFhYTgtNDBhNmNhNTJlNDUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -18609,7 +19129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:31:34 GMT + - Wed, 19 Oct 2022 22:01:31 GMT expires: - '-1' pragma: @@ -18641,7 +19161,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfY2JkYjM0NzAtOTA0Zi00NzQxLWFhYTgtNDBhNmNhNTJlNDUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -18653,7 +19173,53 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:31:34 GMT + - Wed, 19 Oct 2022 22:01:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --location --edr + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfY2JkYjM0NzAtOTA0Zi00NzQxLWFhYTgtNDBhNmNhNTJlNDUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 22:02:02 GMT expires: - '-1' pragma: @@ -18687,7 +19253,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfY2JkYjM0NzAtOTA0Zi00NzQxLWFhYTgtNDBhNmNhNTJlNDUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -18699,7 +19265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:32:05 GMT + - Wed, 19 Oct 2022 22:02:32 GMT expires: - '-1' pragma: @@ -18733,7 +19299,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfY2JkYjM0NzAtOTA0Zi00NzQxLWFhYTgtNDBhNmNhNTJlNDUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -18745,7 +19311,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:32:36 GMT + - Wed, 19 Oct 2022 22:03:02 GMT expires: - '-1' pragma: @@ -18779,7 +19345,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfY2JkYjM0NzAtOTA0Zi00NzQxLWFhYTgtNDBhNmNhNTJlNDUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -18791,7 +19357,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:33:06 GMT + - Wed, 19 Oct 2022 22:03:32 GMT expires: - '-1' pragma: @@ -18825,7 +19391,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfY2JkYjM0NzAtOTA0Zi00NzQxLWFhYTgtNDBhNmNhNTJlNDUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -18837,7 +19403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:33:36 GMT + - Wed, 19 Oct 2022 22:04:03 GMT expires: - '-1' pragma: @@ -18871,7 +19437,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfY2JkYjM0NzAtOTA0Zi00NzQxLWFhYTgtNDBhNmNhNTJlNDUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -18883,7 +19449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:34:06 GMT + - Wed, 19 Oct 2022 22:04:35 GMT expires: - '-1' pragma: @@ -18917,7 +19483,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfYzgxYThhZGUtYmExMS00YmFlLWFkY2ItYTdiMTAzMTE2YmU4O3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfY2JkYjM0NzAtOTA0Zi00NzQxLWFhYTgtNDBhNmNhNTJlNDUyO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -18929,7 +19495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:34:37 GMT + - Wed, 19 Oct 2022 22:05:05 GMT expires: - '-1' pragma: @@ -18966,8 +19532,8 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007","name":"dps-dr000007","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Rqg=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dps-dr000007.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dps-dr000007","endpoint":"sb://iothub-ns-dps-drocdl-22328256-bfe5c1883d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:31:33.2433333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007","name":"dps-dr000007","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPS0zA=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dps-dr000007.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dps-dr000007","endpoint":"sb://iothub-ns-dps-dr63tc-22349851-ba66d52ade.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T22:01:30.0866667Z"}}' headers: cache-control: - no-cache @@ -18976,7 +19542,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:34:39 GMT + - Wed, 19 Oct 2022 22:05:07 GMT expires: - '-1' pragma: @@ -19013,7 +19579,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHO9sYc=","properties":{"locations":[{"location":"Central + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central @@ -19043,7 +19609,8 @@ interactions: US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType @@ -19051,8 +19618,8 @@ interactions: = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHNKROA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East @@ -19064,7 +19631,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO85Ig=","properties":{"locations":[{"location":"East + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East @@ -19087,7 +19654,7 @@ interactions: US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni - Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHO85Qw=","properties":{"locations":[{"location":"East + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East @@ -19103,14 +19670,15 @@ interactions: = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85QU=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHO8Bg8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22245524-bee521f46a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T21:37:40.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO78c4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22287626-3fc214a9da.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-16T23:48:21.45Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHO86Bg=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType @@ -19132,35 +19700,51 @@ interactions: UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-da74b9f45823435394c13ceab3f49960","name":"test-hub-da74b9f45823435394c13ceab3f49960","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"81 - Test IoT Hub - config, core and jobs Python38 181dabdb-4055-58ff-c7bd-8011e0b92875","test_hub_monitor_events":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+JwE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-da74b9f45823435394c13ceab3f49960.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-da74b9f458234353","endpoint":"sb://iothub-ns-test-hub-d-22328069-ee89558e4f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:17:35.0766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-7cfc5a5b357e4c3aa9533857b5b65ba7","name":"test-hub-7cfc5a5b357e4c3aa9533857b5b65ba7","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"81 - Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_hub_monitor_events":"3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+PZE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-7cfc5a5b357e4c3aa9533857b5b65ba7.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-7cfc5a5b357e4c3a","endpoint":"sb://iothub-ns-test-hub-7-22328074-2f4d97aed3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:17:41.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-dd9f372fe12c48a0936070439cd7d999","name":"test-hub-dd9f372fe12c48a0936070439cd7d999","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"81 - Test IoT Hub - config, core and jobs Python38 181dabdb-4055-58ff-c7bd-8011e0b92875","test_system_identity_storage":"1","test_user_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+RsI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-dd9f372fe12c48a0936070439cd7d999.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-dd9f372fe12c48a0","endpoint":"sb://iothub-ns-test-hub-d-22328083-ec5114bc62.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore0217.blob.core.windows.net/;FileEndpoint=https://hubstore0217.file.core.windows.net/;QueueEndpoint=https://hubstore0217.queue.core.windows.net/;TableEndpoint=https://hubstore0217.table.core.windows.net/;AccountName=hubstore0217;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/378cd6b9ce6e4e7898be10f2e6b58312":{"clientId":"f3113812-20ff-464f-bfd6-a075ac90b83c","principalId":"026fe55c-7ef4-4e5d-ad8b-f3f6053e8de4"}}},"systemData":{"createdAt":"2022-10-18T21:18:00.7666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a0e02c304feb4b7c90c814a3bd4bf132","name":"test-hub-a0e02c304feb4b7c90c814a3bd4bf132","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"81 - Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_system_identity_storage":"1","test_user_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+SZw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"test-hub-a0e02c304feb4b7c90c814a3bd4bf132.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a0e02c304feb4b7c","endpoint":"sb://iothub-ns-test-hub-a-22328084-3680f83a6b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore251b.blob.core.windows.net/;FileEndpoint=https://hubstore251b.file.core.windows.net/;QueueEndpoint=https://hubstore251b.queue.core.windows.net/;TableEndpoint=https://hubstore251b.table.core.windows.net/;AccountName=hubstore251b;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/fc67b0771e064de38101ace35f217f19":{"clientId":"e3d70b91-6da8-45c4-b493-abfe13e46e33","principalId":"f19c57cd-8afd-43d2-a3a6-8ac1c71e85b6"}}},"systemData":{"createdAt":"2022-10-18T21:18:05.33Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-10ce8b6185aa4576b7b829c07d708421","name":"test-hub-10ce8b6185aa4576b7b829c07d708421","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_connection_string_show":"1","pipeline_id":"81 - Test IoT Hub - devices, messaging, modules and state Python38 433f2cac-6c40-527a-504a-b20010ce3960","test_iothub_device_generate_sas_token":"1","test_iothub_device_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+LLo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-10ce8b6185aa4576b7b829c07d708421.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-10ce8b6185aa4576","endpoint":"sb://iothub-ns-test-hub-1-22328085-8e55c15005.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:18.6066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f5f1a0aa96cb4385af1e1a60d05217e2","name":"test-hub-f5f1a0aa96cb4385af1e1a60d05217e2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_scope_on_create":"1","pipeline_id":"81 - Test IoT Hub - devices, messaging, modules and state Python38 433f2cac-6c40-527a-504a-b20010ce3960","test_iothub_edge_device_parent_scope_on_create":"1","test_iothub_nested_edge":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+KgM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-f5f1a0aa96cb4385af1e1a60d05217e2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-f5f1a0aa96cb4385","endpoint":"sb://iothub-ns-test-hub-f-22328086-2bf6e96aeb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:18.75Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-e8e028b4e9eb4973b9dd7a9a8e8f4a5a","name":"test-hub-e8e028b4e9eb4973b9dd7a9a8e8f4a5a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_connection_string_show":"1","pipeline_id":"81 - Test IoT Hub - devices, messaging, modules and state Python37 972448a5-d3b3-5e41-ccf5-40735d33ce04","test_iothub_device_generate_sas_token":"1","test_iothub_device_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+MNI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-e8e028b4e9eb4973b9dd7a9a8e8f4a5a.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-e8e028b4e9eb4973","endpoint":"sb://iothub-ns-test-hub-e-22328094-eaa2ed9e50.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:20.6666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-84e72b52c92849488e6943bff2168d59","name":"test-hub-84e72b52c92849488e6943bff2168d59","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_scope_on_create":"1","pipeline_id":"81 - Test IoT Hub - devices, messaging, modules and state Python37 972448a5-d3b3-5e41-ccf5-40735d33ce04","test_iothub_edge_device_parent_scope_on_create":"1","test_iothub_nested_edge":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+K0s=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-84e72b52c92849488e6943bff2168d59.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-84e72b52c9284948","endpoint":"sb://iothub-ns-test-hub-8-22328099-fe9d9ea0a4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:21.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-79c146007462405fa9410c1680eb9bf7","name":"test-hub-79c146007462405fa9410c1680eb9bf7","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_module_connection_string_show":"1","pipeline_id":"81 - Test IoT Hub - devices, messaging, modules and state Python37 972448a5-d3b3-5e41-ccf5-40735d33ce04","test_iothub_module_generate_sas_token":"1","test_iothub_module_identity":"1","test_iothub_module_renew_key":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+SPM=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-79c146007462405fa9410c1680eb9bf7.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-79c146007462405f","endpoint":"sb://iothub-ns-test-hub-7-22328100-8fb57d452a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:18:21.6333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-4d939b24ceaa4b","name":"test-hub-4d939b24ceaa4b","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+M3I=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-4d939b24ceaa4b.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-4d939b24ceaa4b","endpoint":"sb://iothub-ns-test-hub-4-22328201-6bd91284a6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep801ca0edbdf14d.blob.core.windows.net/;FileEndpoint=https://testhubdep801ca0edbdf14d.file.core.windows.net/;QueueEndpoint=https://testhubdep801ca0edbdf14d.queue.core.windows.net/;TableEndpoint=https://testhubdep801ca0edbdf14d.table.core.windows.net/;AccountName=testhubdep801ca0edbdf14d;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdba8ce215c1c4e":{"clientId":"f09cf361-031d-4269-a7e9-980a4fdd7036","principalId":"d3fbd85c-9f08-45cd-b91f-a08db8642b53"}},"principalId":"72f86813-b939-4696-80a2-6ae5b4bc02ee"},"systemData":{"createdAt":"2022-10-18T21:28:22.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-7cba711b544043","name":"test-hub-7cba711b544043","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+OHI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-7cba711b544043.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-7cba711b544043","endpoint":"sb://iothub-ns-test-hub-7-22328215-f1faa3789d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep347a55723bb24a.blob.core.windows.net/;FileEndpoint=https://testhubdep347a55723bb24a.file.core.windows.net/;QueueEndpoint=https://testhubdep347a55723bb24a.queue.core.windows.net/;TableEndpoint=https://testhubdep347a55723bb24a.table.core.windows.net/;AccountName=testhubdep347a55723bb24a;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepce3af62147ad48":{"clientId":"3034fa8e-3bad-489b-8a0f-7962511111a1","principalId":"3f3b9b51-25e7-49cc-a782-8dd47bb383da"}},"principalId":"f82a4aa8-a5c4-4c51-9e8e-a8f67dad073c"},"systemData":{"createdAt":"2022-10-18T21:29:02.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f0cad9aa560c43","name":"test-hub-f0cad9aa560c43","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+QMI=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-f0cad9aa560c43.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-f0cad9aa560c43","endpoint":"sb://iothub-ns-test-hub-f-22328243-22fd753963.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep801ca0edbdf14d.blob.core.windows.net/;FileEndpoint=https://testhubdep801ca0edbdf14d.file.core.windows.net/;QueueEndpoint=https://testhubdep801ca0edbdf14d.queue.core.windows.net/;TableEndpoint=https://testhubdep801ca0edbdf14d.table.core.windows.net/;AccountName=testhubdep801ca0edbdf14d;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdba8ce215c1c4e":{"clientId":"f09cf361-031d-4269-a7e9-980a4fdd7036","principalId":"d3fbd85c-9f08-45cd-b91f-a08db8642b53"}},"principalId":"0578eb73-d0da-40a0-baad-27f8aac9c3ee"},"systemData":{"createdAt":"2022-10-18T21:30:30.1933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-6fcec9fa16f94c","name":"test-hub-6fcec9fa16f94c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+RUw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-6fcec9fa16f94c.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-6fcec9fa16f94c","endpoint":"sb://iothub-ns-test-hub-6-22328257-b13331ad85.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep347a55723bb24a.blob.core.windows.net/;FileEndpoint=https://testhubdep347a55723bb24a.file.core.windows.net/;QueueEndpoint=https://testhubdep347a55723bb24a.queue.core.windows.net/;TableEndpoint=https://testhubdep347a55723bb24a.table.core.windows.net/;AccountName=testhubdep347a55723bb24a;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepce3af62147ad48":{"clientId":"3034fa8e-3bad-489b-8a0f-7962511111a1","principalId":"3f3b9b51-25e7-49cc-a782-8dd47bb383da"}},"principalId":"38b3b3e2-1b09-4b50-934e-7b20208cf5a8"},"systemData":{"createdAt":"2022-10-18T21:31:41.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007","name":"dps-dr000007","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHO+Rqg=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dps-dr000007.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dps-dr000007","endpoint":"sb://iothub-ns-dps-drocdl-22328256-bfe5c1883d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T21:31:33.2433333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","name":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"40 + Test IoT Hub - config, core and jobs Python37 018719aa-5a10-5b46-3517-fdf3ebf48dae","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1","test_twin_properties_update":"3","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS1E4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-012e1f6a3f3b45b48ee0fbf9272a66d9.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-012e1f6a3f3b45b4","endpoint":"sb://iothub-ns-test-hub-0-22349475-35377f34f9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:38:44.3533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-87eb9f0e62e74db19af1053d12ce18f2","name":"test-hub-87eb9f0e62e74db19af1053d12ce18f2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python37 343657f0-47cf-572f-a49e-f5e39f674be5","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1","test_twin_properties_update":"3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS1EY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-87eb9f0e62e74db19af1053d12ce18f2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-87eb9f0e62e74db1","endpoint":"sb://iothub-ns-test-hub-8-22349528-99c21b2b0f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:41:06.2133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-df6bdfaed3f14b8c82059489502191b9","name":"test-hub-df6bdfaed3f14b8c82059489502191b9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_hub_monitor_feedback":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python38 181dabdb-4055-58ff-c7bd-8011e0b92875","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1","test_twin_properties_update":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSzFQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-df6bdfaed3f14b8c82059489502191b9.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-df6bdfaed3f14b8c","endpoint":"sb://iothub-ns-test-hub-d-22349641-f8e6b84310.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:48:04.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-aeb4f1a24a34443ca93763753e2bdbb3","name":"test-hub-aeb4f1a24a34443ca93763753e2bdbb3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_connection_string_show":"1","pipeline_id":"40 + Test IoT Hub - devices, messaging and modules Python310 f01a34fe-149b-55fd-eca7-5cacd875a2c6","test_iothub_device_generate_sas_token":"1","test_iothub_device_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS0N8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-aeb4f1a24a34443ca93763753e2bdbb3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-aeb4f1a24a34443c","endpoint":"sb://iothub-ns-test-hub-a-22349745-3066269018.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:55:56.5Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-439d08c791fb47a1a978c70b158b8da9","name":"test-hub-439d08c791fb47a1a978c70b158b8da9","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_scope_on_create":"1","pipeline_id":"40 + Test IoT Hub - devices, messaging and modules Python310 f01a34fe-149b-55fd-eca7-5cacd875a2c6","test_iothub_edge_device_parent_scope_on_create":"1","test_iothub_nested_edge":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS0yU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-439d08c791fb47a1a978c70b158b8da9.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-439d08c791fb47a1","endpoint":"sb://iothub-ns-test-hub-4-22349746-c956ba616e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:55:57.2333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-d252b39491804f27b4530c01e68d273f","name":"test-hub-d252b39491804f27b4530c01e68d273f","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_module_connection_string_show":"1","pipeline_id":"40 + Test IoT Hub - devices, messaging and modules Python310 f01a34fe-149b-55fd-eca7-5cacd875a2c6","test_iothub_module_generate_sas_token":"1","test_iothub_module_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS1FA=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-d252b39491804f27b4530c01e68d273f.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-d252b39491804f27","endpoint":"sb://iothub-ns-test-hub-d-22349747-88f8ade555.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:55:57.29Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-f71e35ebb1214d6785f03b07e6a08e79","name":"test-hub-f71e35ebb1214d6785f03b07e6a08e79","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_scope_on_create":"1","pipeline_id":"39 + Test IoT Hub - devices, messaging and modules Python39 fb475286-1af5-5670-a988-804641493172","test_iothub_edge_device_parent_scope_on_create":"1","test_iothub_nested_edge":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS1Ug=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-f71e35ebb1214d6785f03b07e6a08e79.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-f71e35ebb1214d67","endpoint":"sb://iothub-ns-test-hub-f-22349774-bf885e3925.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:57:17.3033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-3d0e39ef43eb4f459a304353ed4cf9ec","name":"test-hub-3d0e39ef43eb4f459a304353ed4cf9ec","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_module_connection_string_show":"1","pipeline_id":"39 + Test IoT Hub - devices, messaging and modules Python39 fb475286-1af5-5670-a988-804641493172","test_iothub_module_generate_sas_token":"1","test_iothub_module_identity":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS1qI=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-3d0e39ef43eb4f459a304353ed4cf9ec.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-3d0e39ef43eb4f45","endpoint":"sb://iothub-ns-test-hub-3-22349777-5def760c7d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:57:17.5166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-c15bc415007444b4ab3a7c18ba7a3fd5","name":"test-hub-c15bc415007444b4ab3a7c18ba7a3fd5","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_twin":"1","pipeline_id":"39 + Test IoT Hub - devices, messaging and modules Python39 fb475286-1af5-5670-a988-804641493172"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS2C0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"test-hub-c15bc415007444b4ab3a7c18ba7a3fd5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c15bc415007444b4","endpoint":"sb://iothub-ns-test-hub-c-22349778-210b82bc9e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:57:18.4566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-019f4887b79f438da78590e470ed0475","name":"test-hub-019f4887b79f438da78590e470ed0475","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_connection_string_show":"1","pipeline_id":"39 + Test IoT Hub - devices, messaging and modules Python39 fb475286-1af5-5670-a988-804641493172","test_iothub_device_generate_sas_token":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS048=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-019f4887b79f438da78590e470ed0475.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-019f4887b79f438d","endpoint":"sb://iothub-ns-test-hub-0-22349779-9ea146a573.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:57:18.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8bff17faacf24a9babbe98f620a411ea","name":"test-hub-8bff17faacf24a9babbe98f620a411ea","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_module_connection_string_show":"1","pipeline_id":"39 + Test IoT Hub - devices, messaging and modules Python310 9caa0e94-36e6-5c23-d474-118b26710518","test_iothub_module_generate_sas_token":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS2C4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8bff17faacf24a9babbe98f620a411ea.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8bff17faacf24a9b","endpoint":"sb://iothub-ns-test-hub-8-22349802-5189b07ec7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:58:27.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-d259f074444a4d8f9b0404d936399bfc","name":"test-hub-d259f074444a4d8f9b0404d936399bfc","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_c2d_messages":"1","pipeline_id":"39 + Test IoT Hub - devices, messaging and modules Python310 9caa0e94-36e6-5c23-d474-118b26710518"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS13U=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Deleting","provisioningState":"Deleting","ipFilterRules":[],"hostName":"test-hub-d259f074444a4d8f9b0404d936399bfc.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-d259f074444a4d8f","endpoint":"sb://iothub-ns-test-hub-d-22349803-c8fe5ff5ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:58:28.0933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-0ab351de08db47779ece4826645e8cf1","name":"test-hub-0ab351de08db47779ece4826645e8cf1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_module_twin":"1","pipeline_id":"39 + Test IoT Hub - devices, messaging and modules Python310 9caa0e94-36e6-5c23-d474-118b26710518"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS0w8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-0ab351de08db47779ece4826645e8cf1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-0ab351de08db4777","endpoint":"sb://iothub-ns-test-hub-0-22349805-dbda82defc.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:58:28.3666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-425ed87ebd864b079b8b4904065cbb62","name":"test-hub-425ed87ebd864b079b8b4904065cbb62","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_connection_string_show":"1","pipeline_id":"39 + Test IoT Hub - devices, messaging and modules Python310 9caa0e94-36e6-5c23-d474-118b26710518","test_iothub_device_generate_sas_token":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS1+w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"test-hub-425ed87ebd864b079b8b4904065cbb62.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-425ed87ebd864b07","endpoint":"sb://iothub-ns-test-hub-4-22349806-d65e67a50b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:58:29.5033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-7e028a6dd3f0442893a9a2d501777b5b","name":"test-hub-7e028a6dd3f0442893a9a2d501777b5b","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_scope_on_create":"1","pipeline_id":"39 + Test IoT Hub - devices, messaging and modules Python310 9caa0e94-36e6-5c23-d474-118b26710518","test_iothub_edge_device_parent_scope_on_create":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPS1+k=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"test-hub-7e028a6dd3f0442893a9a2d501777b5b.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-7e028a6dd3f04428","endpoint":"sb://iothub-ns-test-hub-7-22349807-670510a6ef.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:58:29.6866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-3c39e986dd50469d9aa8635524ce298a","name":"test-hub-3c39e986dd50469d9aa8635524ce298a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_device_twin":"1","pipeline_id":"39 + Test IoT Hub - devices, messaging and modules Python310 9caa0e94-36e6-5c23-d474-118b26710518"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPSz/A=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-3c39e986dd50469d9aa8635524ce298a.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-3c39e986dd50469d","endpoint":"sb://iothub-ns-test-hub-3-22349808-2bf7d7e9dd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T21:58:30.4466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/dps-dr000007","name":"dps-dr000007","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPS0zA=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"dps-dr000007.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"dps-dr000007","endpoint":"sb://iothub-ns-dps-dr63tc-22349851-ba66d52ade.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T22:01:30.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway @@ -19176,11 +19760,11 @@ interactions: cache-control: - no-cache content-length: - - '207275' + - '226170' content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:34:47 GMT + - Wed, 19 Oct 2022 22:05:19 GMT expires: - '-1' pragma: @@ -19229,7 +19813,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfZDBmMWRhMDMtZGJjOC00NjNjLWExNTUtNGFlMDIyODQ5ZGZkO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfNDI5YmU1ZTctMjY0ZS00YWQ2LWE2YzctYTlkYThlYTAzODRhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -19237,11 +19821,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:34:50 GMT + - Wed, 19 Oct 2022 22:05:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfZDBmMWRhMDMtZGJjOC00NjNjLWExNTUtNGFlMDIyODQ5ZGZkO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfNDI5YmU1ZTctMjY0ZS00YWQ2LWE2YzctYTlkYThlYTAzODRhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other pragma: - no-cache server: @@ -19271,7 +19855,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfZDBmMWRhMDMtZGJjOC00NjNjLWExNTUtNGFlMDIyODQ5ZGZkO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfNDI5YmU1ZTctMjY0ZS00YWQ2LWE2YzctYTlkYThlYTAzODRhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Pending"}' @@ -19283,7 +19867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:34:50 GMT + - Wed, 19 Oct 2022 22:05:22 GMT expires: - '-1' pragma: @@ -19317,7 +19901,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfZDBmMWRhMDMtZGJjOC00NjNjLWExNTUtNGFlMDIyODQ5ZGZkO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfNDI5YmU1ZTctMjY0ZS00YWQ2LWE2YzctYTlkYThlYTAzODRhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -19329,7 +19913,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:35:21 GMT + - Wed, 19 Oct 2022 22:05:53 GMT expires: - '-1' pragma: @@ -19363,7 +19947,7 @@ interactions: User-Agent: - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfZDBmMWRhMDMtZGJjOC00NjNjLWExNTUtNGFlMDIyODQ5ZGZkO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/southeastasia/operationResults/aWQ9b3NfaWhfNDI5YmU1ZTctMjY0ZS00YWQ2LWE2YzctYTlkYThlYTAzODRhO3JlZ2lvbj1zb3V0aGVhc3Rhc2lh?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -19375,7 +19959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 18 Oct 2022 21:35:51 GMT + - Wed, 19 Oct 2022 22:06:23 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 edf4a74b7d4..5852aeb2722 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 @@ -25,6 +25,7 @@ def __init__(self, method_name): @ResourceGroupPreparer(location='westus2') @StorageAccountPreparer() def test_iot_hub(self, resource_group, resource_group_location, storage_account): + # for some reason the recording is missing a ] and a } after the routing.endpoints.eventHubs hub = self.create_random_name(prefix='iot-hub-for-test-11', length=32) rg = resource_group location = resource_group_location From 1d3b0b7b200c7b431b09416689bb1467b87916ab Mon Sep 17 00:00:00 2001 From: Victoria Litvinova Date: Wed, 19 Oct 2022 16:53:48 -0700 Subject: [PATCH 04/10] remove dps test, update dps linked-hub recording --- .../test_dps_linked_hub_lifecycle.yaml | 4496 +++++++++-------- .../iot/tests/latest/test_iot_dps_commands.py | 8 +- 2 files changed, 2503 insertions(+), 2001 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_dps_linked_hub_lifecycle.yaml b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_dps_linked_hub_lifecycle.yaml index 813896781c2..80362b43edf 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_dps_linked_hub_lifecycle.yaml +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/recordings/test_dps_linked_hub_lifecycle.yaml @@ -17,8 +17,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/checkProvisioningServiceNameAvailability?api-version=2021-10-15 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:37:23 GMT + - Wed, 19 Oct 2022 23:35:53 GMT expires: - '-1' pragma: @@ -66,12 +66,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-03T17:37:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-10-19T23:35:50Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -80,7 +80,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:37:23 GMT + - Wed, 19 Oct 2022 23:35:53 GMT expires: - '-1' pragma: @@ -113,8 +113,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: @@ -122,7 +122,7 @@ interactions: string: '{"name":"dps000002","location":"westus","properties":{"state":"Activating","provisioningState":"Accepted","allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYWI1YjdjNWYtN2NkZi00NmFjLTg5MmUtM2UyZmZmOGI1MGQ4O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfNTM4NTBiMTAtMjc3MS00YzAyLWI4OTEtYTk0OGNjYjQyZDY3O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo cache-control: - no-cache content-length: @@ -130,7 +130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:37:27 GMT + - Wed, 19 Oct 2022 23:35:56 GMT expires: - '-1' pragma: @@ -160,10 +160,57 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYWI1YjdjNWYtN2NkZi00NmFjLTg5MmUtM2UyZmZmOGI1MGQ4O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfNTM4NTBiMTAtMjc3MS00YzAyLWI4OTEtYTk0OGNjYjQyZDY3O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:35:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot dps create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfNTM4NTBiMTAtMjc3MS00YzAyLWI4OTEtYTk0OGNjYjQyZDY3O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -175,7 +222,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:37:57 GMT + - Wed, 19 Oct 2022 23:36:27 GMT expires: - '-1' pragma: @@ -207,13 +254,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/Pz78=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuCFU=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -222,7 +269,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:37:57 GMT + - Wed, 19 Oct 2022 23:36:27 GMT expires: - '-1' pragma: @@ -254,12 +301,12 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-03T17:37:21Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-10-19T23:35:50Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -268,7 +315,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:37:59 GMT + - Wed, 19 Oct 2022 23:36:28 GMT expires: - '-1' pragma: @@ -307,15 +354,15 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003?api-version=2022-04-30-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNmZmYTkzODQtZjQ4YS00MTkyLTllNTctNjg1ZTk0ZmEzNTljO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYzgyOTNjMzQtZWI4Yy00ZWVlLTkwN2MtNWJlOGI0Nzc1YTY5O3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -323,7 +370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:38:04 GMT + - Wed, 19 Oct 2022 23:36:32 GMT expires: - '-1' pragma: @@ -353,9 +400,55 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYzgyOTNjMzQtZWI4Yy00ZWVlLTkwN2MtNWJlOGI0Nzc1YTY5O3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:36:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNmZmYTkzODQtZjQ4YS00MTkyLTllNTctNjg1ZTk0ZmEzNTljO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYzgyOTNjMzQtZWI4Yy00ZWVlLTkwN2MtNWJlOGI0Nzc1YTY5O3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -367,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:38:34 GMT + - Wed, 19 Oct 2022 23:37:02 GMT expires: - '-1' pragma: @@ -399,9 +492,9 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNmZmYTkzODQtZjQ4YS00MTkyLTllNTctNjg1ZTk0ZmEzNTljO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYzgyOTNjMzQtZWI4Yy00ZWVlLTkwN2MtNWJlOGI0Nzc1YTY5O3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -413,7 +506,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:39:04 GMT + - Wed, 19 Oct 2022 23:37:33 GMT expires: - '-1' pragma: @@ -445,9 +538,9 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNmZmYTkzODQtZjQ4YS00MTkyLTllNTctNjg1ZTk0ZmEzNTljO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYzgyOTNjMzQtZWI4Yy00ZWVlLTkwN2MtNWJlOGI0Nzc1YTY5O3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -459,7 +552,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:39:34 GMT + - Wed, 19 Oct 2022 23:38:03 GMT expires: - '-1' pragma: @@ -491,9 +584,9 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNmZmYTkzODQtZjQ4YS00MTkyLTllNTctNjg1ZTk0ZmEzNTljO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYzgyOTNjMzQtZWI4Yy00ZWVlLTkwN2MtNWJlOGI0Nzc1YTY5O3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -505,7 +598,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:40:04 GMT + - Wed, 19 Oct 2022 23:38:33 GMT expires: - '-1' pragma: @@ -537,9 +630,9 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNmZmYTkzODQtZjQ4YS00MTkyLTllNTctNjg1ZTk0ZmEzNTljO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYzgyOTNjMzQtZWI4Yy00ZWVlLTkwN2MtNWJlOGI0Nzc1YTY5O3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -551,7 +644,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:40:34 GMT + - Wed, 19 Oct 2022 23:39:03 GMT expires: - '-1' pragma: @@ -583,22 +676,22 @@ interactions: ParameterSetName: - -n -g --sku User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeauhw=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUNHE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:36:32.2433333Z"}}' headers: cache-control: - no-cache content-length: - - '1602' + - '1630' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:40:35 GMT + - Wed, 19 Oct 2022 23:39:04 GMT expires: - '-1' pragma: @@ -630,106 +723,173 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGUsk7g=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGaryzE=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint2","id":"ced63e9b-9199-4cf6-9cf6-6f296608496c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[],"routes":[{"name":"DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUNHE=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:36:32.2433333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF4uNdI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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","publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADFw9ud4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGWFmQM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Network/privateEndpoints/raharri-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1/PrivateEndpointConnections/raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","name":"raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubAu2021","name":"rkesslerHubAu2021","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF2lvbw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerHubAu2021.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubau2021","endpoint":"sb://iothub-ns-rkesslerhu-14200631-32ee399d59.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-08-13T22:57:08.61Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGeR7j4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=queue-1","authenticationType":"keyBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/vilit-pytest-hub","name":"vilit-pytest-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGeR8z0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-pytest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-pytest-hub","endpoint":"sb://iothub-ns-vilit-pyte-14648386-9899ac09c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/0f1f6d17f7184b1eabf7aa3a0739f247":{"clientId":"6382d1f3-b895-46bf-8ced-f29a25e5c605","principalId":"f23f1a99-1ab4-4fde-979c-0559a872a14d"}},"principalId":"72c1c80d-574e-43cd-8816-67e00e9811b4"},"systemData":{"createdAt":"2021-09-02T22:03:21.34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"exam":"test2","exam2":"test3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGVr4g0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-16240640-68efd3638f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vilit-hub-test;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"endpoint","id":"9a207810-9af0-4cb7-831b-ab665c16d6a2","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[]},"routes":[{"name":"route","source":"DeviceMessages","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:37:52.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-3","name":"smoke-test-3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF3waEw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"smoke-test-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-3","endpoint":"sb://iothub-ns-smoke-test-16241276-718954597f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T23:04:32.7833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADGZ/Kl4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADGVqjsc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/delete-me-defender","name":"delete-me-defender","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGcDjPI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"delete-me-defender.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"delete-me-defender","endpoint":"sb://iothub-ns-delete-me-18739372-2a78bad565.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-19T23:42:50.3633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-adu-hub","name":"askhura-adu-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGcMC5k=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-adu-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-adu-hub","endpoint":"sb://iothub-ns-askhura-ad-18747832-281cfb3511.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-20T16:31:22.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test102","name":"vilit-hub-test102","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"a":"b","c":"d"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGeSmcc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test102.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test102","endpoint":"sb://iothub-ns-vilit-hub-18882672-df6c5178ea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-02T23:55:27.8Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGSQpzg=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil - South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerNorthEurope","name":"rkesslerNorthEurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFwD1S8=","properties":{"locations":[{"location":"North - Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerNorthEurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslernortheurope","endpoint":"sb://iothub-ns-rkesslerno-6065260-e40e15a83a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-20T11:41:22.963Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerGWV2","name":"rkesslerGWV2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFq+hyg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerGWV2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslergwv2","endpoint":"sb://iothub-ns-rkesslergw-6461604-f593ab0244.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-12-09T00:15:53.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADGeR9As=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGTYFSI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFr9z3Y=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGdQeYA=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[{"key":"sdfsdsds","value":"asdfasdfsd","endpointNames":["asdfghjkl"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGTYFR4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg-canary/providers/Microsoft.Devices/IotHubs/pamontg-mqtt","name":"pamontg-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg-canary","etag":"AAAADGaUao8=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg-mqtt","endpoint":"sb://iothub-ns-pamontg-mq-16300691-eece1b528b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://upxservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=devicework","authenticationType":"keyBased","name":"pamontg-sb-q","id":"bac59f5b-0ff1-4ac8-a5fd-533621906dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"hackathon2021"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=topic-1","authenticationType":"keyBased","name":"pamontg-sb-t","id":"c34a8785-fca4-44fc-b6fb-12185269a4dc","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-mqtt;SharedAccessKey=****;EntityPath=captured","authenticationType":"keyBased","name":"pamontg-eh","id":"a687e71d-0a05-4dc4-968b-9b8e6e0fa955","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontgmqttstore;AccountKey=****","containerName":"mqttstore","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"JSON","authenticationType":"keyBased","name":"MqttColdStorage","id":"b3c5e496-191c-4e8e-b0b8-65ca9c478f9f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg-canary"}]},"routes":[{"name":"MqttRoute","source":"MqttBrokerMessages","condition":"true","endpointNames":["MqttColdStorage"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-06T19:21:38.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-mqtt","name":"vilit-test-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADF/UJJg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-mqtt","endpoint":"sb://iothub-ns-vilit-test-16754325-6ea7e5609a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-07T20:25:18.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-broker","name":"vilit-test-broker","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADGCxQyk=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-broker.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-broker","endpoint":"sb://iothub-ns-vilit-test-16990908-50b5f5df01.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"MqttBrokerRoute","source":"MqttBrokerMessages","condition":"STARTS_WITH($mqtt-topic, - \"vehicles/\")","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-21T20:53:27.9466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","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},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFrmLTA=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADGcZeik=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"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":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_PaymaunHub;SharedAccessKey=****;EntityPath=paymauneventhub","name":"myEventhubEp","id":"c9b7ab5b-7624-44a4-a1ad-f598f0962fd1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=TestPolicy;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"MyEHEndpoint","id":"df3df736-f923-4f92-9d53-32a6ee66a03e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub","name":"yingworkhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADGHItR4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"1.0.0.0"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.0"}]},"hostName":"yingworkhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingworkhub","endpoint":"sb://iothub-ns-yingworkhu-7810654-bfabd1a47f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","name":"test222","id":"cdd74cb4-e0db-4cf8-8bc7-8f7f4f3345b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","authenticationType":"keyBased","name":"test333","id":"7d19929b-0545-4f24-8321-0835e1f0d49b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT5H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT5H","maxDeliveryCount":19}},"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/adt-test/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub/PrivateEndpointConnections/yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","name":"yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-02-03T01:11:50.883Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGcaz2A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/BillableModulesTestHub","name":"BillableModulesTestHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6FwK4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"BillableModulesTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"billablemodulestesthub","endpoint":"sb://iothub-ns-billablemo-16397238-86d909a7ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-15T01:34:40.3366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeauhw=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}},{"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":"AAAADFv9nug=","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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADFv97l0=","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":{"type":"None"},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADGUso9M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"192.1.1.1"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"192.1.1.1"}]},"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-6621eea138.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg;SharedAccessKey=****;EntityPath=captured","name":"pamontg-eh","id":"50d18bf3-3b04-4b57-b910-315157e6bd44","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"store1","id":"e970e1b8-93f0-4b67-8196-25ff6533b44c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"store2","id":"5c98782c-15b1-4f24-a086-2e6b4eee191c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=pamontgtsi;AccountKey=****","containerName":"hubcontainer"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"7d0f402c-d032-4a55-a6be-763d4252af10"},"systemData":{"createdAt":"2020-08-12T17:49:08.82Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF5AJEc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-int-test-hub","name":"rk-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGTYLuw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-int-test-hub","endpoint":"sb://iothub-ns-rk-cli-int-6335385-8cf2a6e686.servicebus.windows.net/"}},"routing":{"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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"23c984de-d8ee-45f9-83ea-c0930a6a5665"},"systemData":{"createdAt":"2020-12-03T18:15:27.6Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg2","name":"pamontg2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADFwGQoA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg2","endpoint":"sb://iothub-ns-pamontg2-13844841-cb639165c1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-07-27T23:04:46.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-2","name":"smoke-test-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXl3wE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"smoke-test-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-2","endpoint":"sb://iothub-ns-smoke-test-16240457-a5759ac96a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:07:45.04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGchvk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/deleteme4","name":"deleteme4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXBpsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"deleteme4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"deleteme4","endpoint":"sb://iothub-ns-deleteme4-18107980-f759f5ba0d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-18T20:29:38.2566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","name":"test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGboTok=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-18T17:40:18.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdRvik=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-757cddec85f8484bad237323ee4552e4","name":"test-dps-hub-757cddec85f8484bad237323ee4552e4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-318f81a1ad2b4058831d394f4cfb1f68"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGdk8X8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T09:00:38.1166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-c10aed4859874d1f8f5e539df9fa9510","name":"test-hub-c10aed4859874d1f8f5e539df9fa9510","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdqOzo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c10aed4859874d1f8f5e539df9fa9510.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c10aed4859874d1f","endpoint":"sb://iothub-ns-test-hub-c-18839450-98dd20cc30.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T21:06:07.2833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","name":"test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-36ca1f9401c74457a99a9a06df42d114"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGd50/g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-30T08:36:44.1333333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1e7bee8526cf496f9a64c57f34822ce4","name":"test-hub-1e7bee8526cf496f9a64c57f34822ce4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python39 06446c32-6f24-573c-0426-5702c48efd75","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUNQw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1e7bee8526cf496f9a64c57f34822ce4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1e7bee8526cf496f","endpoint":"sb://iothub-ns-test-hub-1-22351093-2f3a821b54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:21:01.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-fb08f18a3649465b8eb0e4afe2ebffac","name":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUM7s=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-fb08f18a3649465b","endpoint":"sb://iothub-ns-test-hub-f-22351157-037e87a950.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:18.8733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-41f91a6d96fe4ae0a3f8cc719b987239","name":"test-hub-41f91a6d96fe4ae0a3f8cc719b987239","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_iothub_connection_string_show":"3","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_iothub_generate_sas_token":"1","test_iothub_init":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUNAk=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-41f91a6d96fe4ae0a3f8cc719b987239.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-41f91a6d96fe4ae0","endpoint":"sb://iothub-ns-test-hub-4-22351158-66ad75a591.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:19.09Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","name":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_system_identity_storage":"1","test_user_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUM7w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9bcb4d9cca184aaa","endpoint":"sb://iothub-ns-test-hub-9-22351162-5b5c05a1e7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstorebef7.blob.core.windows.net/;FileEndpoint=https://hubstorebef7.file.core.windows.net/;QueueEndpoint=https://hubstorebef7.queue.core.windows.net/;TableEndpoint=https://hubstorebef7.table.core.windows.net/;AccountName=hubstorebef7;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:41.6466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '112349' + - '202564' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:40:39 GMT + - Wed, 19 Oct 2022 23:39:12 GMT expires: - '-1' pragma: @@ -750,6 +910,7 @@ interactions: - '' - '' - '' + - '' status: code: 200 message: OK @@ -769,9 +930,9 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003/listkeys?api-version=2022-04-30-preview response: body: string: '{"value":[{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -784,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:40:40 GMT + - Wed, 19 Oct 2022 23:39:12 GMT expires: - '-1' pragma: @@ -805,7 +966,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "etag": "AAAADGeauhw=", "properties": + body: '{"location": "westus", "tags": {}, "etag": "AAAADHPUNHE=", "properties": {"authorizationPolicies": [{"keyName": "iothubowner", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": "RegistryWrite, ServiceConnect, DeviceConnect"}, {"keyName": "service", "primaryKey":"mock_key", "secondaryKey":"mock_key", "rights": @@ -816,9 +977,9 @@ interactions: {"keyName": "key000004", "rights": "RegistryWrite"}], "allowedFqdnList": [], "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": + "serviceBusTopics": [], "eventHubs": [], "storageContainers": [], "cosmosDBSqlCollections": + []}, "routes": [], "fallbackRoute": {"name": "$fallback", "source": "DeviceMessages", + "condition": "true", "endpointNames": ["events"], "isEnabled": true}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": "PT1H", "connectionString": "", "containerName": ""}}, "messagingEndpoints": {"fileNotifications": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}, "enableFileUploadNotifications": @@ -836,28 +997,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1646' + - '1676' Content-Type: - application/json If-Match: - - '{''IF-MATCH'': ''AAAADGeauhw=''}' + - '{''IF-MATCH'': ''AAAADHPUNHE=''}' ParameterSetName: - --hub-name -n --permissions User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeauhw=","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":"key000004","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003-operationmonitoring","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-1b94a3ea-ca8a-4f0d-8831-7e9016ea501c-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Tue, - 03 May 2022 17:39:43 GMT","ModifiedTime":"Tue, 03 May 2022 17:39:43 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-8830e54d-4fef-4512-bec6-88fc3e591026-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Tue, - 03 May 2022 17:39:43 GMT","ModifiedTime":"Tue, 03 May 2022 17:39:43 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 03 May 2022 17:39:43 GMT","ModifiedTime":"Tue, 03 May 2022 17:39:43 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Tue, - 03 May 2022 17:39:43 GMT","ModifiedTime":"Tue, 03 May 2022 17:39:43 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUNHE=","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":"key000004","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite"}],"ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003-operationmonitoring","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/","internalAuthorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"scaleunitsend-bc004ad6-71c6-4c83-a26f-39dbb8a5818f-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Send"],"CreatedTime":"Wed, + 19 Oct 2022 23:38:10 GMT","ModifiedTime":"Wed, 19 Oct 2022 23:38:10 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"owner-09ca5fdb-b67e-4d7c-aa47-4ee13581638a-iothub","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen","Manage","Send"],"CreatedTime":"Wed, + 19 Oct 2022 23:38:10 GMT","ModifiedTime":"Wed, 19 Oct 2022 23:38:10 GMT"}],"authorizationPolicies":[{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 23:38:10 GMT","ModifiedTime":"Wed, 19 Oct 2022 23:38:10 GMT"},{"ClaimType":"SharedAccessKey","ClaimValue":"None","KeyName":"service","primaryKey":"mock_key","secondaryKey":"mock_key","Rights":["Listen"],"CreatedTime":"Wed, + 19 Oct 2022 23:38:10 GMT","ModifiedTime":"Wed, 19 Oct 2022 23:38:10 GMT"}]}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[],"azureDigitalTwinsInstances":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMzdkYTRhOTEtYjBhNC00N2FkLTk0YTUtNDI3ZjExNDQwZTUwO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNTgxMzFkYjUtZDVmNC00N2UwLWEwMTAtNTE0NzJkMTU1YzliO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -865,7 +1026,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:40:43 GMT + - Wed, 19 Oct 2022 23:39:17 GMT expires: - '-1' pragma: @@ -895,9 +1056,55 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNTgxMzFkYjUtZDVmNC00N2UwLWEwMTAtNTE0NzJkMTU1YzliO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:39:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub policy create + Connection: + - keep-alive + ParameterSetName: + - --hub-name -n --permissions + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfMzdkYTRhOTEtYjBhNC00N2FkLTk0YTUtNDI3ZjExNDQwZTUwO3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNTgxMzFkYjUtZDVmNC00N2UwLWEwMTAtNTE0NzJkMTU1YzliO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -909,7 +1116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:13 GMT + - Wed, 19 Oct 2022 23:39:47 GMT expires: - '-1' pragma: @@ -941,22 +1148,22 @@ interactions: ParameterSetName: - --hub-name -n --permissions User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeau0Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUOC4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:36:32.2433333Z"}}' headers: cache-control: - no-cache content-length: - - '1602' + - '1630' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:14 GMT + - Wed, 19 Oct 2022 23:39:48 GMT expires: - '-1' pragma: @@ -988,106 +1195,171 @@ interactions: ParameterSetName: - --dps-name -g --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGUsk7g=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGaryzE=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint2","id":"ced63e9b-9199-4cf6-9cf6-6f296608496c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[],"routes":[{"name":"DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUOC4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:36:32.2433333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF4uNdI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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","publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADFw9ud4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGWFmQM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Network/privateEndpoints/raharri-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1/PrivateEndpointConnections/raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","name":"raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubAu2021","name":"rkesslerHubAu2021","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF2lvbw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerHubAu2021.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubau2021","endpoint":"sb://iothub-ns-rkesslerhu-14200631-32ee399d59.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-08-13T22:57:08.61Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGeR7j4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=queue-1","authenticationType":"keyBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/vilit-pytest-hub","name":"vilit-pytest-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGeR8z0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-pytest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-pytest-hub","endpoint":"sb://iothub-ns-vilit-pyte-14648386-9899ac09c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/0f1f6d17f7184b1eabf7aa3a0739f247":{"clientId":"6382d1f3-b895-46bf-8ced-f29a25e5c605","principalId":"f23f1a99-1ab4-4fde-979c-0559a872a14d"}},"principalId":"72c1c80d-574e-43cd-8816-67e00e9811b4"},"systemData":{"createdAt":"2021-09-02T22:03:21.34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"exam":"test2","exam2":"test3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGVr4g0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-16240640-68efd3638f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vilit-hub-test;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"endpoint","id":"9a207810-9af0-4cb7-831b-ab665c16d6a2","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[]},"routes":[{"name":"route","source":"DeviceMessages","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:37:52.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-3","name":"smoke-test-3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF3waEw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"smoke-test-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-3","endpoint":"sb://iothub-ns-smoke-test-16241276-718954597f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T23:04:32.7833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADGZ/Kl4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADGVqjsc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/delete-me-defender","name":"delete-me-defender","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGcDjPI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"delete-me-defender.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"delete-me-defender","endpoint":"sb://iothub-ns-delete-me-18739372-2a78bad565.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-19T23:42:50.3633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-adu-hub","name":"askhura-adu-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGcMC5k=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-adu-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-adu-hub","endpoint":"sb://iothub-ns-askhura-ad-18747832-281cfb3511.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-20T16:31:22.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test102","name":"vilit-hub-test102","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"a":"b","c":"d"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGeSmcc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test102.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test102","endpoint":"sb://iothub-ns-vilit-hub-18882672-df6c5178ea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-02T23:55:27.8Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGSQpzg=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil - South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerNorthEurope","name":"rkesslerNorthEurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFwD1S8=","properties":{"locations":[{"location":"North - Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerNorthEurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslernortheurope","endpoint":"sb://iothub-ns-rkesslerno-6065260-e40e15a83a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-20T11:41:22.963Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerGWV2","name":"rkesslerGWV2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFq+hyg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerGWV2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslergwv2","endpoint":"sb://iothub-ns-rkesslergw-6461604-f593ab0244.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-12-09T00:15:53.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADGeR9As=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGTYFSI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFr9z3Y=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGdQeYA=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[{"key":"sdfsdsds","value":"asdfasdfsd","endpointNames":["asdfghjkl"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGTYFR4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg-canary/providers/Microsoft.Devices/IotHubs/pamontg-mqtt","name":"pamontg-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg-canary","etag":"AAAADGaUao8=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg-mqtt","endpoint":"sb://iothub-ns-pamontg-mq-16300691-eece1b528b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://upxservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=devicework","authenticationType":"keyBased","name":"pamontg-sb-q","id":"bac59f5b-0ff1-4ac8-a5fd-533621906dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"hackathon2021"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=topic-1","authenticationType":"keyBased","name":"pamontg-sb-t","id":"c34a8785-fca4-44fc-b6fb-12185269a4dc","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-mqtt;SharedAccessKey=****;EntityPath=captured","authenticationType":"keyBased","name":"pamontg-eh","id":"a687e71d-0a05-4dc4-968b-9b8e6e0fa955","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontgmqttstore;AccountKey=****","containerName":"mqttstore","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"JSON","authenticationType":"keyBased","name":"MqttColdStorage","id":"b3c5e496-191c-4e8e-b0b8-65ca9c478f9f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg-canary"}]},"routes":[{"name":"MqttRoute","source":"MqttBrokerMessages","condition":"true","endpointNames":["MqttColdStorage"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-06T19:21:38.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-mqtt","name":"vilit-test-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADF/UJJg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-mqtt","endpoint":"sb://iothub-ns-vilit-test-16754325-6ea7e5609a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-07T20:25:18.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-broker","name":"vilit-test-broker","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADGCxQyk=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-broker.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-broker","endpoint":"sb://iothub-ns-vilit-test-16990908-50b5f5df01.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"MqttBrokerRoute","source":"MqttBrokerMessages","condition":"STARTS_WITH($mqtt-topic, - \"vehicles/\")","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-21T20:53:27.9466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","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},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFrmLTA=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADGcZeik=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"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":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_PaymaunHub;SharedAccessKey=****;EntityPath=paymauneventhub","name":"myEventhubEp","id":"c9b7ab5b-7624-44a4-a1ad-f598f0962fd1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=TestPolicy;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"MyEHEndpoint","id":"df3df736-f923-4f92-9d53-32a6ee66a03e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub","name":"yingworkhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADGHItR4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"1.0.0.0"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.0"}]},"hostName":"yingworkhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingworkhub","endpoint":"sb://iothub-ns-yingworkhu-7810654-bfabd1a47f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","name":"test222","id":"cdd74cb4-e0db-4cf8-8bc7-8f7f4f3345b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","authenticationType":"keyBased","name":"test333","id":"7d19929b-0545-4f24-8321-0835e1f0d49b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT5H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT5H","maxDeliveryCount":19}},"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/adt-test/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub/PrivateEndpointConnections/yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","name":"yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-02-03T01:11:50.883Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGcaz2A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/BillableModulesTestHub","name":"BillableModulesTestHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6FwK4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"BillableModulesTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"billablemodulestesthub","endpoint":"sb://iothub-ns-billablemo-16397238-86d909a7ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-15T01:34:40.3366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeau0Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}},{"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":"AAAADFv9nug=","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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADFv97l0=","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":{"type":"None"},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADGUso9M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"192.1.1.1"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"192.1.1.1"}]},"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-6621eea138.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg;SharedAccessKey=****;EntityPath=captured","name":"pamontg-eh","id":"50d18bf3-3b04-4b57-b910-315157e6bd44","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"store1","id":"e970e1b8-93f0-4b67-8196-25ff6533b44c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"store2","id":"5c98782c-15b1-4f24-a086-2e6b4eee191c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=pamontgtsi;AccountKey=****","containerName":"hubcontainer"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"7d0f402c-d032-4a55-a6be-763d4252af10"},"systemData":{"createdAt":"2020-08-12T17:49:08.82Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF5AJEc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-int-test-hub","name":"rk-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGTYLuw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-int-test-hub","endpoint":"sb://iothub-ns-rk-cli-int-6335385-8cf2a6e686.servicebus.windows.net/"}},"routing":{"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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"23c984de-d8ee-45f9-83ea-c0930a6a5665"},"systemData":{"createdAt":"2020-12-03T18:15:27.6Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg2","name":"pamontg2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADFwGQoA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg2","endpoint":"sb://iothub-ns-pamontg2-13844841-cb639165c1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-07-27T23:04:46.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-2","name":"smoke-test-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXl3wE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"smoke-test-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-2","endpoint":"sb://iothub-ns-smoke-test-16240457-a5759ac96a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:07:45.04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGchvk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/deleteme4","name":"deleteme4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXBpsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"deleteme4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"deleteme4","endpoint":"sb://iothub-ns-deleteme4-18107980-f759f5ba0d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-18T20:29:38.2566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","name":"test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGboTok=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-18T17:40:18.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdRvik=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-757cddec85f8484bad237323ee4552e4","name":"test-dps-hub-757cddec85f8484bad237323ee4552e4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-318f81a1ad2b4058831d394f4cfb1f68"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGdk8X8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T09:00:38.1166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-c10aed4859874d1f8f5e539df9fa9510","name":"test-hub-c10aed4859874d1f8f5e539df9fa9510","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdqOzo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c10aed4859874d1f8f5e539df9fa9510.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c10aed4859874d1f","endpoint":"sb://iothub-ns-test-hub-c-18839450-98dd20cc30.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T21:06:07.2833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","name":"test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-36ca1f9401c74457a99a9a06df42d114"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGd50/g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-30T08:36:44.1333333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1e7bee8526cf496f9a64c57f34822ce4","name":"test-hub-1e7bee8526cf496f9a64c57f34822ce4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python39 06446c32-6f24-573c-0426-5702c48efd75","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUNQw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1e7bee8526cf496f9a64c57f34822ce4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1e7bee8526cf496f","endpoint":"sb://iothub-ns-test-hub-1-22351093-2f3a821b54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:21:01.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-fb08f18a3649465b8eb0e4afe2ebffac","name":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUOJw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-fb08f18a3649465b","endpoint":"sb://iothub-ns-test-hub-f-22351157-037e87a950.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:18.8733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","name":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_system_identity_storage":"1","test_user_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUODE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9bcb4d9cca184aaa","endpoint":"sb://iothub-ns-test-hub-9-22351162-5b5c05a1e7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstorebef7.blob.core.windows.net/;FileEndpoint=https://hubstorebef7.file.core.windows.net/;QueueEndpoint=https://hubstorebef7.queue.core.windows.net/;TableEndpoint=https://hubstorebef7.table.core.windows.net/;AccountName=hubstorebef7;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/611d472427e441ec8afdcc02c3a655e7":{"clientId":"10ece8a9-1413-4397-8822-4eed818216ca","principalId":"8a990a34-b7b5-491b-a1ed-1de348fefcee"}}},"systemData":{"createdAt":"2022-10-19T23:25:41.6466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '112349' + - '200995' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:16 GMT + - Wed, 19 Oct 2022 23:39:55 GMT expires: - '-1' pragma: @@ -1108,6 +1380,7 @@ interactions: - '' - '' - '' + - '' status: code: 200 message: OK @@ -1127,9 +1400,9 @@ interactions: ParameterSetName: - --dps-name -g --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003/IotHubKeys/iothubowner/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003/IotHubKeys/iothubowner/listkeys?api-version=2022-04-30-preview response: body: string: '{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -1142,7 +1415,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:16 GMT + - Wed, 19 Oct 2022 23:39:56 GMT expires: - '-1' pragma: @@ -1176,106 +1449,171 @@ interactions: ParameterSetName: - --dps-name -g --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGUsk7g=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGaryzE=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint2","id":"ced63e9b-9199-4cf6-9cf6-6f296608496c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[],"routes":[{"name":"DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUOC4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:36:32.2433333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF4uNdI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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","publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADFw9ud4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGWFmQM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Network/privateEndpoints/raharri-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1/PrivateEndpointConnections/raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","name":"raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubAu2021","name":"rkesslerHubAu2021","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF2lvbw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerHubAu2021.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubau2021","endpoint":"sb://iothub-ns-rkesslerhu-14200631-32ee399d59.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-08-13T22:57:08.61Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGeR7j4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=queue-1","authenticationType":"keyBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/vilit-pytest-hub","name":"vilit-pytest-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGeR8z0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-pytest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-pytest-hub","endpoint":"sb://iothub-ns-vilit-pyte-14648386-9899ac09c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/0f1f6d17f7184b1eabf7aa3a0739f247":{"clientId":"6382d1f3-b895-46bf-8ced-f29a25e5c605","principalId":"f23f1a99-1ab4-4fde-979c-0559a872a14d"}},"principalId":"72c1c80d-574e-43cd-8816-67e00e9811b4"},"systemData":{"createdAt":"2021-09-02T22:03:21.34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"exam":"test2","exam2":"test3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGVr4g0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-16240640-68efd3638f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vilit-hub-test;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"endpoint","id":"9a207810-9af0-4cb7-831b-ab665c16d6a2","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[]},"routes":[{"name":"route","source":"DeviceMessages","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:37:52.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-3","name":"smoke-test-3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF3waEw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"smoke-test-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-3","endpoint":"sb://iothub-ns-smoke-test-16241276-718954597f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T23:04:32.7833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADGZ/Kl4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADGVqjsc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/delete-me-defender","name":"delete-me-defender","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGcDjPI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"delete-me-defender.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"delete-me-defender","endpoint":"sb://iothub-ns-delete-me-18739372-2a78bad565.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-19T23:42:50.3633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-adu-hub","name":"askhura-adu-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGcMC5k=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-adu-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-adu-hub","endpoint":"sb://iothub-ns-askhura-ad-18747832-281cfb3511.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-20T16:31:22.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test102","name":"vilit-hub-test102","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"a":"b","c":"d"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGeSmcc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test102.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test102","endpoint":"sb://iothub-ns-vilit-hub-18882672-df6c5178ea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-02T23:55:27.8Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGSQpzg=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil - South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerNorthEurope","name":"rkesslerNorthEurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFwD1S8=","properties":{"locations":[{"location":"North - Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerNorthEurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslernortheurope","endpoint":"sb://iothub-ns-rkesslerno-6065260-e40e15a83a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-20T11:41:22.963Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerGWV2","name":"rkesslerGWV2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFq+hyg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerGWV2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslergwv2","endpoint":"sb://iothub-ns-rkesslergw-6461604-f593ab0244.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-12-09T00:15:53.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADGeR9As=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGTYFSI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFr9z3Y=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGdQeYA=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[{"key":"sdfsdsds","value":"asdfasdfsd","endpointNames":["asdfghjkl"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGTYFR4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg-canary/providers/Microsoft.Devices/IotHubs/pamontg-mqtt","name":"pamontg-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg-canary","etag":"AAAADGaUao8=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg-mqtt","endpoint":"sb://iothub-ns-pamontg-mq-16300691-eece1b528b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://upxservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=devicework","authenticationType":"keyBased","name":"pamontg-sb-q","id":"bac59f5b-0ff1-4ac8-a5fd-533621906dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"hackathon2021"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=topic-1","authenticationType":"keyBased","name":"pamontg-sb-t","id":"c34a8785-fca4-44fc-b6fb-12185269a4dc","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-mqtt;SharedAccessKey=****;EntityPath=captured","authenticationType":"keyBased","name":"pamontg-eh","id":"a687e71d-0a05-4dc4-968b-9b8e6e0fa955","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontgmqttstore;AccountKey=****","containerName":"mqttstore","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"JSON","authenticationType":"keyBased","name":"MqttColdStorage","id":"b3c5e496-191c-4e8e-b0b8-65ca9c478f9f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg-canary"}]},"routes":[{"name":"MqttRoute","source":"MqttBrokerMessages","condition":"true","endpointNames":["MqttColdStorage"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-06T19:21:38.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-mqtt","name":"vilit-test-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADF/UJJg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-mqtt","endpoint":"sb://iothub-ns-vilit-test-16754325-6ea7e5609a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-07T20:25:18.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-broker","name":"vilit-test-broker","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADGCxQyk=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-broker.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-broker","endpoint":"sb://iothub-ns-vilit-test-16990908-50b5f5df01.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"MqttBrokerRoute","source":"MqttBrokerMessages","condition":"STARTS_WITH($mqtt-topic, - \"vehicles/\")","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-21T20:53:27.9466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","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},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFrmLTA=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADGcZeik=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"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":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_PaymaunHub;SharedAccessKey=****;EntityPath=paymauneventhub","name":"myEventhubEp","id":"c9b7ab5b-7624-44a4-a1ad-f598f0962fd1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=TestPolicy;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"MyEHEndpoint","id":"df3df736-f923-4f92-9d53-32a6ee66a03e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub","name":"yingworkhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADGHItR4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"1.0.0.0"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.0"}]},"hostName":"yingworkhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingworkhub","endpoint":"sb://iothub-ns-yingworkhu-7810654-bfabd1a47f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","name":"test222","id":"cdd74cb4-e0db-4cf8-8bc7-8f7f4f3345b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","authenticationType":"keyBased","name":"test333","id":"7d19929b-0545-4f24-8321-0835e1f0d49b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT5H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT5H","maxDeliveryCount":19}},"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/adt-test/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub/PrivateEndpointConnections/yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","name":"yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-02-03T01:11:50.883Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGcaz2A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/BillableModulesTestHub","name":"BillableModulesTestHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6FwK4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"BillableModulesTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"billablemodulestesthub","endpoint":"sb://iothub-ns-billablemo-16397238-86d909a7ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-15T01:34:40.3366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeau0Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}},{"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":"AAAADFv9nug=","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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADFv97l0=","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":{"type":"None"},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADGUso9M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"192.1.1.1"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"192.1.1.1"}]},"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-6621eea138.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg;SharedAccessKey=****;EntityPath=captured","name":"pamontg-eh","id":"50d18bf3-3b04-4b57-b910-315157e6bd44","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"store1","id":"e970e1b8-93f0-4b67-8196-25ff6533b44c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"store2","id":"5c98782c-15b1-4f24-a086-2e6b4eee191c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=pamontgtsi;AccountKey=****","containerName":"hubcontainer"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"7d0f402c-d032-4a55-a6be-763d4252af10"},"systemData":{"createdAt":"2020-08-12T17:49:08.82Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF5AJEc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-int-test-hub","name":"rk-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGTYLuw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-int-test-hub","endpoint":"sb://iothub-ns-rk-cli-int-6335385-8cf2a6e686.servicebus.windows.net/"}},"routing":{"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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"23c984de-d8ee-45f9-83ea-c0930a6a5665"},"systemData":{"createdAt":"2020-12-03T18:15:27.6Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg2","name":"pamontg2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADFwGQoA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg2","endpoint":"sb://iothub-ns-pamontg2-13844841-cb639165c1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-07-27T23:04:46.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-2","name":"smoke-test-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXl3wE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"smoke-test-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-2","endpoint":"sb://iothub-ns-smoke-test-16240457-a5759ac96a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:07:45.04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGchvk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/deleteme4","name":"deleteme4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXBpsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"deleteme4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"deleteme4","endpoint":"sb://iothub-ns-deleteme4-18107980-f759f5ba0d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-18T20:29:38.2566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","name":"test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGboTok=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-18T17:40:18.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdRvik=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-757cddec85f8484bad237323ee4552e4","name":"test-dps-hub-757cddec85f8484bad237323ee4552e4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-318f81a1ad2b4058831d394f4cfb1f68"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGdk8X8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T09:00:38.1166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-c10aed4859874d1f8f5e539df9fa9510","name":"test-hub-c10aed4859874d1f8f5e539df9fa9510","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdqOzo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c10aed4859874d1f8f5e539df9fa9510.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c10aed4859874d1f","endpoint":"sb://iothub-ns-test-hub-c-18839450-98dd20cc30.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T21:06:07.2833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","name":"test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-36ca1f9401c74457a99a9a06df42d114"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGd50/g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-30T08:36:44.1333333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1e7bee8526cf496f9a64c57f34822ce4","name":"test-hub-1e7bee8526cf496f9a64c57f34822ce4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python39 06446c32-6f24-573c-0426-5702c48efd75","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUOY4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Transitioning","provisioningState":"Transitioning","ipFilterRules":[],"hostName":"test-hub-1e7bee8526cf496f9a64c57f34822ce4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1e7bee8526cf496f","endpoint":"sb://iothub-ns-test-hub-1-22351093-2f3a821b54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:21:01.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-fb08f18a3649465b8eb0e4afe2ebffac","name":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUOJw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-fb08f18a3649465b","endpoint":"sb://iothub-ns-test-hub-f-22351157-037e87a950.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:18.8733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","name":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_system_identity_storage":"1","test_user_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUODE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9bcb4d9cca184aaa","endpoint":"sb://iothub-ns-test-hub-9-22351162-5b5c05a1e7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstorebef7.blob.core.windows.net/;FileEndpoint=https://hubstorebef7.file.core.windows.net/;QueueEndpoint=https://hubstorebef7.queue.core.windows.net/;TableEndpoint=https://hubstorebef7.table.core.windows.net/;AccountName=hubstorebef7;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/611d472427e441ec8afdcc02c3a655e7":{"clientId":"10ece8a9-1413-4397-8822-4eed818216ca","principalId":"8a990a34-b7b5-491b-a1ed-1de348fefcee"}}},"systemData":{"createdAt":"2022-10-19T23:25:41.6466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '112349' + - '201044' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:18 GMT + - Wed, 19 Oct 2022 23:40:03 GMT expires: - '-1' pragma: @@ -1296,6 +1634,7 @@ interactions: - '' - '' - '' + - '' status: code: 200 message: OK @@ -1313,106 +1652,171 @@ interactions: ParameterSetName: - --dps-name -g --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGUsk7g=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGaryzE=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint2","id":"ced63e9b-9199-4cf6-9cf6-6f296608496c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[],"routes":[{"name":"DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUOC4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:36:32.2433333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF4uNdI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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","publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADFw9ud4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGWFmQM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Network/privateEndpoints/raharri-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1/PrivateEndpointConnections/raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","name":"raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubAu2021","name":"rkesslerHubAu2021","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF2lvbw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerHubAu2021.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubau2021","endpoint":"sb://iothub-ns-rkesslerhu-14200631-32ee399d59.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-08-13T22:57:08.61Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGeR7j4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=queue-1","authenticationType":"keyBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/vilit-pytest-hub","name":"vilit-pytest-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGeR8z0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-pytest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-pytest-hub","endpoint":"sb://iothub-ns-vilit-pyte-14648386-9899ac09c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/0f1f6d17f7184b1eabf7aa3a0739f247":{"clientId":"6382d1f3-b895-46bf-8ced-f29a25e5c605","principalId":"f23f1a99-1ab4-4fde-979c-0559a872a14d"}},"principalId":"72c1c80d-574e-43cd-8816-67e00e9811b4"},"systemData":{"createdAt":"2021-09-02T22:03:21.34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"exam":"test2","exam2":"test3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGVr4g0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-16240640-68efd3638f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vilit-hub-test;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"endpoint","id":"9a207810-9af0-4cb7-831b-ab665c16d6a2","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[]},"routes":[{"name":"route","source":"DeviceMessages","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:37:52.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-3","name":"smoke-test-3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF3waEw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"smoke-test-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-3","endpoint":"sb://iothub-ns-smoke-test-16241276-718954597f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T23:04:32.7833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADGZ/Kl4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADGVqjsc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/delete-me-defender","name":"delete-me-defender","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGcDjPI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"delete-me-defender.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"delete-me-defender","endpoint":"sb://iothub-ns-delete-me-18739372-2a78bad565.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-19T23:42:50.3633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-adu-hub","name":"askhura-adu-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGcMC5k=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-adu-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-adu-hub","endpoint":"sb://iothub-ns-askhura-ad-18747832-281cfb3511.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-20T16:31:22.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test102","name":"vilit-hub-test102","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"a":"b","c":"d"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGeSmcc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test102.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test102","endpoint":"sb://iothub-ns-vilit-hub-18882672-df6c5178ea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-02T23:55:27.8Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGSQpzg=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil - South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerNorthEurope","name":"rkesslerNorthEurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFwD1S8=","properties":{"locations":[{"location":"North - Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerNorthEurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslernortheurope","endpoint":"sb://iothub-ns-rkesslerno-6065260-e40e15a83a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-20T11:41:22.963Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerGWV2","name":"rkesslerGWV2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFq+hyg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerGWV2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslergwv2","endpoint":"sb://iothub-ns-rkesslergw-6461604-f593ab0244.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-12-09T00:15:53.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADGeR9As=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGTYFSI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFr9z3Y=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGdQeYA=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[{"key":"sdfsdsds","value":"asdfasdfsd","endpointNames":["asdfghjkl"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGTYFR4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg-canary/providers/Microsoft.Devices/IotHubs/pamontg-mqtt","name":"pamontg-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg-canary","etag":"AAAADGaUao8=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg-mqtt","endpoint":"sb://iothub-ns-pamontg-mq-16300691-eece1b528b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://upxservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=devicework","authenticationType":"keyBased","name":"pamontg-sb-q","id":"bac59f5b-0ff1-4ac8-a5fd-533621906dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"hackathon2021"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=topic-1","authenticationType":"keyBased","name":"pamontg-sb-t","id":"c34a8785-fca4-44fc-b6fb-12185269a4dc","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-mqtt;SharedAccessKey=****;EntityPath=captured","authenticationType":"keyBased","name":"pamontg-eh","id":"a687e71d-0a05-4dc4-968b-9b8e6e0fa955","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontgmqttstore;AccountKey=****","containerName":"mqttstore","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"JSON","authenticationType":"keyBased","name":"MqttColdStorage","id":"b3c5e496-191c-4e8e-b0b8-65ca9c478f9f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg-canary"}]},"routes":[{"name":"MqttRoute","source":"MqttBrokerMessages","condition":"true","endpointNames":["MqttColdStorage"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-06T19:21:38.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-mqtt","name":"vilit-test-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADF/UJJg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-mqtt","endpoint":"sb://iothub-ns-vilit-test-16754325-6ea7e5609a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-07T20:25:18.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-broker","name":"vilit-test-broker","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADGCxQyk=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-broker.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-broker","endpoint":"sb://iothub-ns-vilit-test-16990908-50b5f5df01.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"MqttBrokerRoute","source":"MqttBrokerMessages","condition":"STARTS_WITH($mqtt-topic, - \"vehicles/\")","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-21T20:53:27.9466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","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},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFrmLTA=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADGcZeik=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"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":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_PaymaunHub;SharedAccessKey=****;EntityPath=paymauneventhub","name":"myEventhubEp","id":"c9b7ab5b-7624-44a4-a1ad-f598f0962fd1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=TestPolicy;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"MyEHEndpoint","id":"df3df736-f923-4f92-9d53-32a6ee66a03e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub","name":"yingworkhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADGHItR4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"1.0.0.0"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.0"}]},"hostName":"yingworkhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingworkhub","endpoint":"sb://iothub-ns-yingworkhu-7810654-bfabd1a47f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","name":"test222","id":"cdd74cb4-e0db-4cf8-8bc7-8f7f4f3345b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","authenticationType":"keyBased","name":"test333","id":"7d19929b-0545-4f24-8321-0835e1f0d49b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT5H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT5H","maxDeliveryCount":19}},"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/adt-test/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub/PrivateEndpointConnections/yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","name":"yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-02-03T01:11:50.883Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGcaz2A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/BillableModulesTestHub","name":"BillableModulesTestHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6FwK4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"BillableModulesTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"billablemodulestesthub","endpoint":"sb://iothub-ns-billablemo-16397238-86d909a7ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-15T01:34:40.3366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeau0Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}},{"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":"AAAADFv9nug=","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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADFv97l0=","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":{"type":"None"},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADGUso9M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"192.1.1.1"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"192.1.1.1"}]},"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-6621eea138.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg;SharedAccessKey=****;EntityPath=captured","name":"pamontg-eh","id":"50d18bf3-3b04-4b57-b910-315157e6bd44","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"store1","id":"e970e1b8-93f0-4b67-8196-25ff6533b44c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"store2","id":"5c98782c-15b1-4f24-a086-2e6b4eee191c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=pamontgtsi;AccountKey=****","containerName":"hubcontainer"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"7d0f402c-d032-4a55-a6be-763d4252af10"},"systemData":{"createdAt":"2020-08-12T17:49:08.82Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF5AJEc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-int-test-hub","name":"rk-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGTYLuw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-int-test-hub","endpoint":"sb://iothub-ns-rk-cli-int-6335385-8cf2a6e686.servicebus.windows.net/"}},"routing":{"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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"23c984de-d8ee-45f9-83ea-c0930a6a5665"},"systemData":{"createdAt":"2020-12-03T18:15:27.6Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg2","name":"pamontg2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADFwGQoA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg2","endpoint":"sb://iothub-ns-pamontg2-13844841-cb639165c1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-07-27T23:04:46.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-2","name":"smoke-test-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXl3wE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"smoke-test-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-2","endpoint":"sb://iothub-ns-smoke-test-16240457-a5759ac96a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:07:45.04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGchvk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/deleteme4","name":"deleteme4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXBpsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"deleteme4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"deleteme4","endpoint":"sb://iothub-ns-deleteme4-18107980-f759f5ba0d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-18T20:29:38.2566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","name":"test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGboTok=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-18T17:40:18.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdRvik=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-757cddec85f8484bad237323ee4552e4","name":"test-dps-hub-757cddec85f8484bad237323ee4552e4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-318f81a1ad2b4058831d394f4cfb1f68"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGdk8X8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T09:00:38.1166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-c10aed4859874d1f8f5e539df9fa9510","name":"test-hub-c10aed4859874d1f8f5e539df9fa9510","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdqOzo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c10aed4859874d1f8f5e539df9fa9510.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c10aed4859874d1f","endpoint":"sb://iothub-ns-test-hub-c-18839450-98dd20cc30.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T21:06:07.2833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","name":"test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-36ca1f9401c74457a99a9a06df42d114"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGd50/g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-30T08:36:44.1333333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1e7bee8526cf496f9a64c57f34822ce4","name":"test-hub-1e7bee8526cf496f9a64c57f34822ce4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python39 06446c32-6f24-573c-0426-5702c48efd75","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUOeo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1e7bee8526cf496f9a64c57f34822ce4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1e7bee8526cf496f","endpoint":"sb://iothub-ns-test-hub-1-22351093-2f3a821b54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:21:01.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-fb08f18a3649465b8eb0e4afe2ebffac","name":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUOJw=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-fb08f18a3649465b","endpoint":"sb://iothub-ns-test-hub-f-22351157-037e87a950.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:18.8733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","name":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_system_identity_storage":"1","test_user_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUODE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9bcb4d9cca184aaa","endpoint":"sb://iothub-ns-test-hub-9-22351162-5b5c05a1e7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstorebef7.blob.core.windows.net/;FileEndpoint=https://hubstorebef7.file.core.windows.net/;QueueEndpoint=https://hubstorebef7.queue.core.windows.net/;TableEndpoint=https://hubstorebef7.table.core.windows.net/;AccountName=hubstorebef7;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/611d472427e441ec8afdcc02c3a655e7":{"clientId":"10ece8a9-1413-4397-8822-4eed818216ca","principalId":"8a990a34-b7b5-491b-a1ed-1de348fefcee"}}},"systemData":{"createdAt":"2022-10-19T23:25:41.6466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '112349' + - '201033' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:22 GMT + - Wed, 19 Oct 2022 23:40:17 GMT expires: - '-1' pragma: @@ -1433,6 +1837,7 @@ interactions: - '' - '' - '' + - '' status: code: 200 message: OK @@ -1450,13 +1855,13 @@ interactions: ParameterSetName: - --dps-name -g --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/Pz78=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuCFU=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -1465,7 +1870,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:22 GMT + - Wed, 19 Oct 2022 23:40:12 GMT expires: - '-1' pragma: @@ -1484,7 +1889,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "etag": "AAAAAA/Pz78=", "properties": + body: '{"location": "westus", "tags": {}, "etag": "AAAAABPuCFU=", "properties": {"state": "Active", "provisioningState": "Succeeded", "iotHubs": [{"connectionString": "HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=mock_key;", "location": "westus"}], "allocationPolicy": "Hashed"}, "sku": {"name": "S1", @@ -1505,16 +1910,16 @@ interactions: ParameterSetName: - --dps-name -g --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/Pz78=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=mock_key;","location":"westus"}],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuCFU=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=mock_key;","location":"westus"}],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfOTJjNmQxZWQtMjg5Zi00MzM1LWFhYTItNmNjNjUyOTNjOTA0O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMzgyNGRhODktNTkxYS00MDE0LThjZjUtYzVkMjY2ODE0MDMyO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo cache-control: - no-cache content-length: @@ -1522,7 +1927,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:24 GMT + - Wed, 19 Oct 2022 23:40:14 GMT expires: - '-1' pragma: @@ -1552,10 +1957,57 @@ interactions: ParameterSetName: - --dps-name -g --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMzgyNGRhODktNTkxYS00MDE0LThjZjUtYzVkMjY2ODE0MDMyO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:40: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot dps linked-hub create + Connection: + - keep-alive + ParameterSetName: + - --dps-name -g --hub-name + User-Agent: + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfOTJjNmQxZWQtMjg5Zi00MzM1LWFhYTItNmNjNjUyOTNjOTA0O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMzgyNGRhODktNTkxYS00MDE0LThjZjUtYzVkMjY2ODE0MDMyO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -1567,7 +2019,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:55 GMT + - Wed, 19 Oct 2022 23:40:44 GMT expires: - '-1' pragma: @@ -1599,13 +2051,13 @@ interactions: ParameterSetName: - --dps-name -g --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0oI=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDNQ=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -1614,7 +2066,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:56 GMT + - Wed, 19 Oct 2022 23:40:44 GMT expires: - '-1' pragma: @@ -1646,13 +2098,13 @@ interactions: ParameterSetName: - --dps-name -g --hub-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0oI=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDNQ=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -1661,7 +2113,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:56 GMT + - Wed, 19 Oct 2022 23:40:44 GMT expires: - '-1' pragma: @@ -1693,13 +2145,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0oI=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDNQ=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -1708,7 +2160,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:56 GMT + - Wed, 19 Oct 2022 23:40:45 GMT expires: - '-1' pragma: @@ -1740,13 +2192,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0oI=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDNQ=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -1755,7 +2207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:56 GMT + - Wed, 19 Oct 2022 23:40:45 GMT expires: - '-1' pragma: @@ -1774,7 +2226,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "etag": "AAAAAA/P0oI=", "properties": + body: '{"location": "westus", "tags": {}, "etag": "AAAAABPuDNQ=", "properties": {"state": "Active", "provisioningState": "Succeeded", "iotHubs": [], "allocationPolicy": "Hashed"}, "sku": {"name": "S1", "capacity": 1}}' headers: @@ -1793,16 +2245,16 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0oI=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDNQ=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMGQyZDQ0NjYtYzk3OC00MWEyLWIyZmYtOWQ5MjEwNGY1ZTBkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMWE1MWUxZTktZmEzNi00ODE3LWFjMDctMWFhYzRhMWQwYWMwO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo cache-control: - no-cache content-length: @@ -1810,7 +2262,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:41:59 GMT + - Wed, 19 Oct 2022 23:40:48 GMT expires: - '-1' pragma: @@ -1840,22 +2292,22 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMGQyZDQ0NjYtYzk3OC00MWEyLWIyZmYtOWQ5MjEwNGY1ZTBkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMWE1MWUxZTktZmEzNi00ODE3LWFjMDctMWFhYzRhMWQwYWMwO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:42:29 GMT + - Wed, 19 Oct 2022 23:40:48 GMT expires: - '-1' pragma: @@ -1887,22 +2339,22 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMWE1MWUxZTktZmEzNi00ODE3LWFjMDctMWFhYzRhMWQwYWMwO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: - string: '{"etag":"AAAAAA/P0sw=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '681' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:42:29 GMT + - Wed, 19 Oct 2022 23:41:18 GMT expires: - '-1' pragma: @@ -1924,7 +2376,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1934,13 +2386,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0sw=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDZE=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -1949,7 +2401,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:42:30 GMT + - Wed, 19 Oct 2022 23:41:18 GMT expires: - '-1' pragma: @@ -1975,30 +2427,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot dps linked-hub create + - iot dps linked-hub delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - - --dps-name -g --hub-name --hrg --l + - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003/IotHubKeys/iothubowner/listkeys?api-version=2021-07-02 + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, - ServiceConnect, DeviceConnect"}' + string: '{"etag":"AAAAABPuDZE=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache content-length: - - '131' + - '681' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:42:31 GMT + - Wed, 19 Oct 2022 23:41:19 GMT expires: - '-1' pragma: @@ -2013,8 +2463,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -2029,109 +2477,225 @@ interactions: - iot dps linked-hub create Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - --dps-name -g --hub-name --hrg --l User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003/IotHubKeys/iothubowner/listkeys?api-version=2022-04-30-preview response: body: - string: '{"value":[{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGUsk7g=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGaryzE=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint2","id":"ced63e9b-9199-4cf6-9cf6-6f296608496c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[],"routes":[{"name":"DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id - = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF4uNdI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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","publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADFw9ud4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGWFmQM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Network/privateEndpoints/raharri-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1/PrivateEndpointConnections/raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","name":"raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubAu2021","name":"rkesslerHubAu2021","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF2lvbw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerHubAu2021.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubau2021","endpoint":"sb://iothub-ns-rkesslerhu-14200631-32ee399d59.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-08-13T22:57:08.61Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGeR7j4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=queue-1","authenticationType":"keyBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/vilit-pytest-hub","name":"vilit-pytest-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGeR8z0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-pytest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-pytest-hub","endpoint":"sb://iothub-ns-vilit-pyte-14648386-9899ac09c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/0f1f6d17f7184b1eabf7aa3a0739f247":{"clientId":"6382d1f3-b895-46bf-8ced-f29a25e5c605","principalId":"f23f1a99-1ab4-4fde-979c-0559a872a14d"}},"principalId":"72c1c80d-574e-43cd-8816-67e00e9811b4"},"systemData":{"createdAt":"2021-09-02T22:03:21.34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"exam":"test2","exam2":"test3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGVr4g0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-16240640-68efd3638f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vilit-hub-test;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"endpoint","id":"9a207810-9af0-4cb7-831b-ab665c16d6a2","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[]},"routes":[{"name":"route","source":"DeviceMessages","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:37:52.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-3","name":"smoke-test-3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF3waEw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"smoke-test-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-3","endpoint":"sb://iothub-ns-smoke-test-16241276-718954597f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T23:04:32.7833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADGZ/Kl4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADGVqjsc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/delete-me-defender","name":"delete-me-defender","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGcDjPI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"delete-me-defender.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"delete-me-defender","endpoint":"sb://iothub-ns-delete-me-18739372-2a78bad565.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-19T23:42:50.3633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-adu-hub","name":"askhura-adu-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGcMC5k=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-adu-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-adu-hub","endpoint":"sb://iothub-ns-askhura-ad-18747832-281cfb3511.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-20T16:31:22.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test102","name":"vilit-hub-test102","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"a":"b","c":"d"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGeSmcc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test102.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test102","endpoint":"sb://iothub-ns-vilit-hub-18882672-df6c5178ea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-02T23:55:27.8Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGSQpzg=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil - South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerNorthEurope","name":"rkesslerNorthEurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFwD1S8=","properties":{"locations":[{"location":"North - Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerNorthEurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslernortheurope","endpoint":"sb://iothub-ns-rkesslerno-6065260-e40e15a83a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-20T11:41:22.963Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerGWV2","name":"rkesslerGWV2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFq+hyg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerGWV2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslergwv2","endpoint":"sb://iothub-ns-rkesslergw-6461604-f593ab0244.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-12-09T00:15:53.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADGeR9As=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGTYFSI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFr9z3Y=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGdQeYA=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[{"key":"sdfsdsds","value":"asdfasdfsd","endpointNames":["asdfghjkl"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGTYFR4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg-canary/providers/Microsoft.Devices/IotHubs/pamontg-mqtt","name":"pamontg-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg-canary","etag":"AAAADGaUao8=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg-mqtt","endpoint":"sb://iothub-ns-pamontg-mq-16300691-eece1b528b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://upxservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=devicework","authenticationType":"keyBased","name":"pamontg-sb-q","id":"bac59f5b-0ff1-4ac8-a5fd-533621906dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"hackathon2021"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=topic-1","authenticationType":"keyBased","name":"pamontg-sb-t","id":"c34a8785-fca4-44fc-b6fb-12185269a4dc","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-mqtt;SharedAccessKey=****;EntityPath=captured","authenticationType":"keyBased","name":"pamontg-eh","id":"a687e71d-0a05-4dc4-968b-9b8e6e0fa955","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontgmqttstore;AccountKey=****","containerName":"mqttstore","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"JSON","authenticationType":"keyBased","name":"MqttColdStorage","id":"b3c5e496-191c-4e8e-b0b8-65ca9c478f9f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg-canary"}]},"routes":[{"name":"MqttRoute","source":"MqttBrokerMessages","condition":"true","endpointNames":["MqttColdStorage"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-06T19:21:38.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-mqtt","name":"vilit-test-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADF/UJJg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-mqtt","endpoint":"sb://iothub-ns-vilit-test-16754325-6ea7e5609a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-07T20:25:18.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-broker","name":"vilit-test-broker","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADGCxQyk=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-broker.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-broker","endpoint":"sb://iothub-ns-vilit-test-16990908-50b5f5df01.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"MqttBrokerRoute","source":"MqttBrokerMessages","condition":"STARTS_WITH($mqtt-topic, - \"vehicles/\")","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-21T20:53:27.9466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","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},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFrmLTA=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADGcZeik=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"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":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_PaymaunHub;SharedAccessKey=****;EntityPath=paymauneventhub","name":"myEventhubEp","id":"c9b7ab5b-7624-44a4-a1ad-f598f0962fd1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=TestPolicy;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"MyEHEndpoint","id":"df3df736-f923-4f92-9d53-32a6ee66a03e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub","name":"yingworkhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADGHItR4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"1.0.0.0"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.0"}]},"hostName":"yingworkhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingworkhub","endpoint":"sb://iothub-ns-yingworkhu-7810654-bfabd1a47f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","name":"test222","id":"cdd74cb4-e0db-4cf8-8bc7-8f7f4f3345b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","authenticationType":"keyBased","name":"test333","id":"7d19929b-0545-4f24-8321-0835e1f0d49b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT5H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT5H","maxDeliveryCount":19}},"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/adt-test/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub/PrivateEndpointConnections/yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","name":"yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-02-03T01:11:50.883Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGcaz2A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/BillableModulesTestHub","name":"BillableModulesTestHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6FwK4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"BillableModulesTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"billablemodulestesthub","endpoint":"sb://iothub-ns-billablemo-16397238-86d909a7ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-15T01:34:40.3366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeau0Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}},{"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":"AAAADFv9nug=","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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADFv97l0=","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":{"type":"None"},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADGUso9M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"192.1.1.1"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"192.1.1.1"}]},"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-6621eea138.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg;SharedAccessKey=****;EntityPath=captured","name":"pamontg-eh","id":"50d18bf3-3b04-4b57-b910-315157e6bd44","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"store1","id":"e970e1b8-93f0-4b67-8196-25ff6533b44c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"store2","id":"5c98782c-15b1-4f24-a086-2e6b4eee191c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=pamontgtsi;AccountKey=****","containerName":"hubcontainer"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"7d0f402c-d032-4a55-a6be-763d4252af10"},"systemData":{"createdAt":"2020-08-12T17:49:08.82Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF5AJEc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-int-test-hub","name":"rk-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGTYLuw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-int-test-hub","endpoint":"sb://iothub-ns-rk-cli-int-6335385-8cf2a6e686.servicebus.windows.net/"}},"routing":{"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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"23c984de-d8ee-45f9-83ea-c0930a6a5665"},"systemData":{"createdAt":"2020-12-03T18:15:27.6Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg2","name":"pamontg2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADFwGQoA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg2","endpoint":"sb://iothub-ns-pamontg2-13844841-cb639165c1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-07-27T23:04:46.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-2","name":"smoke-test-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXl3wE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"smoke-test-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-2","endpoint":"sb://iothub-ns-smoke-test-16240457-a5759ac96a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:07:45.04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGchvk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + string: '{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, + ServiceConnect, DeviceConnect"}' + headers: + cache-control: + - no-cache + content-length: + - '131' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:41:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-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 dps linked-hub create + Connection: + - keep-alive + ParameterSetName: + - --dps-name -g --hub-name --hrg --l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUOC4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:36:32.2433333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id + = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/deleteme4","name":"deleteme4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXBpsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"deleteme4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"deleteme4","endpoint":"sb://iothub-ns-deleteme4-18107980-f759f5ba0d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-18T20:29:38.2566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","name":"test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGboTok=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-18T17:40:18.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdRvik=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-757cddec85f8484bad237323ee4552e4","name":"test-dps-hub-757cddec85f8484bad237323ee4552e4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-318f81a1ad2b4058831d394f4cfb1f68"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGdk8X8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T09:00:38.1166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-c10aed4859874d1f8f5e539df9fa9510","name":"test-hub-c10aed4859874d1f8f5e539df9fa9510","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdqOzo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c10aed4859874d1f8f5e539df9fa9510.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c10aed4859874d1f","endpoint":"sb://iothub-ns-test-hub-c-18839450-98dd20cc30.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T21:06:07.2833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","name":"test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-36ca1f9401c74457a99a9a06df42d114"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGd50/g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-30T08:36:44.1333333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1e7bee8526cf496f9a64c57f34822ce4","name":"test-hub-1e7bee8526cf496f9a64c57f34822ce4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python39 06446c32-6f24-573c-0426-5702c48efd75","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUPhE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1e7bee8526cf496f9a64c57f34822ce4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1e7bee8526cf496f","endpoint":"sb://iothub-ns-test-hub-1-22351093-2f3a821b54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:21:01.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-fb08f18a3649465b8eb0e4afe2ebffac","name":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUO9U=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-fb08f18a3649465b","endpoint":"sb://iothub-ns-test-hub-f-22351157-037e87a950.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:18.8733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","name":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_system_identity_storage":"1","test_user_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUODE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9bcb4d9cca184aaa","endpoint":"sb://iothub-ns-test-hub-9-22351162-5b5c05a1e7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstorebef7.blob.core.windows.net/;FileEndpoint=https://hubstorebef7.file.core.windows.net/;QueueEndpoint=https://hubstorebef7.queue.core.windows.net/;TableEndpoint=https://hubstorebef7.table.core.windows.net/;AccountName=hubstorebef7;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/611d472427e441ec8afdcc02c3a655e7":{"clientId":"10ece8a9-1413-4397-8822-4eed818216ca","principalId":"8a990a34-b7b5-491b-a1ed-1de348fefcee"}}},"systemData":{"createdAt":"2022-10-19T23:25:41.6466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '112349' + - '201136' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:42:35 GMT + - Wed, 19 Oct 2022 23:41:26 GMT expires: - '-1' pragma: @@ -2152,6 +2716,7 @@ interactions: - '' - '' - '' + - '' status: code: 200 message: OK @@ -2169,13 +2734,13 @@ interactions: ParameterSetName: - --dps-name -g --hub-name --hrg --l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0sw=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDZE=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -2184,7 +2749,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:42:35 GMT + - Wed, 19 Oct 2022 23:41:27 GMT expires: - '-1' pragma: @@ -2203,7 +2768,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "etag": "AAAAAA/P0sw=", "properties": + body: '{"location": "westus", "tags": {}, "etag": "AAAAABPuDZE=", "properties": {"state": "Active", "provisioningState": "Succeeded", "iotHubs": [{"connectionString": "HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=mock_key;", "location": "westus"}], "allocationPolicy": "Hashed"}, "sku": {"name": "S1", @@ -2224,16 +2789,16 @@ interactions: ParameterSetName: - --dps-name -g --hub-name --hrg --l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0sw=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=mock_key;","location":"westus"}],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDZE=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=mock_key;","location":"westus"}],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfOGNkNzYzMDktOGFhMS00ZjM5LWFlYTgtOWE5ZTY2YjRmOWY4O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfNGNmMDliN2EtMDFhMy00ZjIyLTg2NzMtNTI2ZjUwNThhYTI5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo cache-control: - no-cache content-length: @@ -2241,7 +2806,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:42:38 GMT + - Wed, 19 Oct 2022 23:41:28 GMT expires: - '-1' pragma: @@ -2271,10 +2836,57 @@ interactions: ParameterSetName: - --dps-name -g --hub-name --hrg --l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfNGNmMDliN2EtMDFhMy00ZjIyLTg2NzMtNTI2ZjUwNThhYTI5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:41:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot dps linked-hub create + Connection: + - keep-alive + ParameterSetName: + - --dps-name -g --hub-name --hrg --l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfOGNkNzYzMDktOGFhMS00ZjM5LWFlYTgtOWE5ZTY2YjRmOWY4O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfNGNmMDliN2EtMDFhMy00ZjIyLTg2NzMtNTI2ZjUwNThhYTI5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2286,7 +2898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:08 GMT + - Wed, 19 Oct 2022 23:41:58 GMT expires: - '-1' pragma: @@ -2318,13 +2930,13 @@ interactions: ParameterSetName: - --dps-name -g --hub-name --hrg --l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0zo=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDkY=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -2333,7 +2945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:08 GMT + - Wed, 19 Oct 2022 23:41:59 GMT expires: - '-1' pragma: @@ -2365,13 +2977,13 @@ interactions: ParameterSetName: - --dps-name -g --hub-name --hrg --l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0zo=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDkY=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -2380,7 +2992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:09 GMT + - Wed, 19 Oct 2022 23:41:59 GMT expires: - '-1' pragma: @@ -2412,106 +3024,171 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGUsk7g=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGaryzE=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint2","id":"ced63e9b-9199-4cf6-9cf6-6f296608496c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[],"routes":[{"name":"DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUOC4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:36:32.2433333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF4uNdI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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","publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADFw9ud4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGWFmQM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Network/privateEndpoints/raharri-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1/PrivateEndpointConnections/raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","name":"raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubAu2021","name":"rkesslerHubAu2021","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF2lvbw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerHubAu2021.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubau2021","endpoint":"sb://iothub-ns-rkesslerhu-14200631-32ee399d59.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-08-13T22:57:08.61Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGeR7j4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=queue-1","authenticationType":"keyBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/vilit-pytest-hub","name":"vilit-pytest-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGeR8z0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-pytest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-pytest-hub","endpoint":"sb://iothub-ns-vilit-pyte-14648386-9899ac09c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/0f1f6d17f7184b1eabf7aa3a0739f247":{"clientId":"6382d1f3-b895-46bf-8ced-f29a25e5c605","principalId":"f23f1a99-1ab4-4fde-979c-0559a872a14d"}},"principalId":"72c1c80d-574e-43cd-8816-67e00e9811b4"},"systemData":{"createdAt":"2021-09-02T22:03:21.34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"exam":"test2","exam2":"test3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGVr4g0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-16240640-68efd3638f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vilit-hub-test;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"endpoint","id":"9a207810-9af0-4cb7-831b-ab665c16d6a2","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[]},"routes":[{"name":"route","source":"DeviceMessages","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:37:52.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-3","name":"smoke-test-3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF3waEw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"smoke-test-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-3","endpoint":"sb://iothub-ns-smoke-test-16241276-718954597f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T23:04:32.7833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADGZ/Kl4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADGVqjsc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/delete-me-defender","name":"delete-me-defender","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGcDjPI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"delete-me-defender.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"delete-me-defender","endpoint":"sb://iothub-ns-delete-me-18739372-2a78bad565.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-19T23:42:50.3633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-adu-hub","name":"askhura-adu-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGcMC5k=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-adu-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-adu-hub","endpoint":"sb://iothub-ns-askhura-ad-18747832-281cfb3511.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-20T16:31:22.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test102","name":"vilit-hub-test102","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"a":"b","c":"d"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGeSmcc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test102.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test102","endpoint":"sb://iothub-ns-vilit-hub-18882672-df6c5178ea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-02T23:55:27.8Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGSQpzg=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil - South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerNorthEurope","name":"rkesslerNorthEurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFwD1S8=","properties":{"locations":[{"location":"North - Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerNorthEurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslernortheurope","endpoint":"sb://iothub-ns-rkesslerno-6065260-e40e15a83a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-20T11:41:22.963Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerGWV2","name":"rkesslerGWV2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFq+hyg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerGWV2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslergwv2","endpoint":"sb://iothub-ns-rkesslergw-6461604-f593ab0244.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-12-09T00:15:53.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADGeR9As=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGTYFSI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFr9z3Y=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGdQeYA=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[{"key":"sdfsdsds","value":"asdfasdfsd","endpointNames":["asdfghjkl"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGTYFR4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg-canary/providers/Microsoft.Devices/IotHubs/pamontg-mqtt","name":"pamontg-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg-canary","etag":"AAAADGaUao8=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg-mqtt","endpoint":"sb://iothub-ns-pamontg-mq-16300691-eece1b528b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://upxservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=devicework","authenticationType":"keyBased","name":"pamontg-sb-q","id":"bac59f5b-0ff1-4ac8-a5fd-533621906dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"hackathon2021"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=topic-1","authenticationType":"keyBased","name":"pamontg-sb-t","id":"c34a8785-fca4-44fc-b6fb-12185269a4dc","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-mqtt;SharedAccessKey=****;EntityPath=captured","authenticationType":"keyBased","name":"pamontg-eh","id":"a687e71d-0a05-4dc4-968b-9b8e6e0fa955","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontgmqttstore;AccountKey=****","containerName":"mqttstore","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"JSON","authenticationType":"keyBased","name":"MqttColdStorage","id":"b3c5e496-191c-4e8e-b0b8-65ca9c478f9f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg-canary"}]},"routes":[{"name":"MqttRoute","source":"MqttBrokerMessages","condition":"true","endpointNames":["MqttColdStorage"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-06T19:21:38.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-mqtt","name":"vilit-test-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADF/UJJg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-mqtt","endpoint":"sb://iothub-ns-vilit-test-16754325-6ea7e5609a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-07T20:25:18.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-broker","name":"vilit-test-broker","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADGCxQyk=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-broker.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-broker","endpoint":"sb://iothub-ns-vilit-test-16990908-50b5f5df01.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"MqttBrokerRoute","source":"MqttBrokerMessages","condition":"STARTS_WITH($mqtt-topic, - \"vehicles/\")","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-21T20:53:27.9466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","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},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFrmLTA=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADGcZeik=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"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":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_PaymaunHub;SharedAccessKey=****;EntityPath=paymauneventhub","name":"myEventhubEp","id":"c9b7ab5b-7624-44a4-a1ad-f598f0962fd1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=TestPolicy;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"MyEHEndpoint","id":"df3df736-f923-4f92-9d53-32a6ee66a03e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub","name":"yingworkhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADGHItR4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"1.0.0.0"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.0"}]},"hostName":"yingworkhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingworkhub","endpoint":"sb://iothub-ns-yingworkhu-7810654-bfabd1a47f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","name":"test222","id":"cdd74cb4-e0db-4cf8-8bc7-8f7f4f3345b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","authenticationType":"keyBased","name":"test333","id":"7d19929b-0545-4f24-8321-0835e1f0d49b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT5H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT5H","maxDeliveryCount":19}},"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/adt-test/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub/PrivateEndpointConnections/yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","name":"yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-02-03T01:11:50.883Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGcaz2A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/BillableModulesTestHub","name":"BillableModulesTestHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6FwK4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"BillableModulesTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"billablemodulestesthub","endpoint":"sb://iothub-ns-billablemo-16397238-86d909a7ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-15T01:34:40.3366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeau0Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}},{"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":"AAAADFv9nug=","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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADFv97l0=","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":{"type":"None"},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADGUso9M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"192.1.1.1"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"192.1.1.1"}]},"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-6621eea138.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg;SharedAccessKey=****;EntityPath=captured","name":"pamontg-eh","id":"50d18bf3-3b04-4b57-b910-315157e6bd44","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"store1","id":"e970e1b8-93f0-4b67-8196-25ff6533b44c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"store2","id":"5c98782c-15b1-4f24-a086-2e6b4eee191c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=pamontgtsi;AccountKey=****","containerName":"hubcontainer"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"7d0f402c-d032-4a55-a6be-763d4252af10"},"systemData":{"createdAt":"2020-08-12T17:49:08.82Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF5AJEc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-int-test-hub","name":"rk-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGTYLuw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-int-test-hub","endpoint":"sb://iothub-ns-rk-cli-int-6335385-8cf2a6e686.servicebus.windows.net/"}},"routing":{"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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"23c984de-d8ee-45f9-83ea-c0930a6a5665"},"systemData":{"createdAt":"2020-12-03T18:15:27.6Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg2","name":"pamontg2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADFwGQoA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg2","endpoint":"sb://iothub-ns-pamontg2-13844841-cb639165c1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-07-27T23:04:46.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-2","name":"smoke-test-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXl3wE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"smoke-test-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-2","endpoint":"sb://iothub-ns-smoke-test-16240457-a5759ac96a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:07:45.04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGchvk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/deleteme4","name":"deleteme4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXBpsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"deleteme4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"deleteme4","endpoint":"sb://iothub-ns-deleteme4-18107980-f759f5ba0d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-18T20:29:38.2566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","name":"test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGboTok=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-18T17:40:18.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdRvik=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-757cddec85f8484bad237323ee4552e4","name":"test-dps-hub-757cddec85f8484bad237323ee4552e4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-318f81a1ad2b4058831d394f4cfb1f68"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGdk8X8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T09:00:38.1166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-c10aed4859874d1f8f5e539df9fa9510","name":"test-hub-c10aed4859874d1f8f5e539df9fa9510","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdqOzo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c10aed4859874d1f8f5e539df9fa9510.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c10aed4859874d1f","endpoint":"sb://iothub-ns-test-hub-c-18839450-98dd20cc30.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T21:06:07.2833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","name":"test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-36ca1f9401c74457a99a9a06df42d114"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGd50/g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-30T08:36:44.1333333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1e7bee8526cf496f9a64c57f34822ce4","name":"test-hub-1e7bee8526cf496f9a64c57f34822ce4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python39 06446c32-6f24-573c-0426-5702c48efd75","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUPhE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1e7bee8526cf496f9a64c57f34822ce4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1e7bee8526cf496f","endpoint":"sb://iothub-ns-test-hub-1-22351093-2f3a821b54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:21:01.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-fb08f18a3649465b8eb0e4afe2ebffac","name":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1","test_twin_properties_update":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUP+w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-fb08f18a3649465b","endpoint":"sb://iothub-ns-test-hub-f-22351157-037e87a950.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:18.8733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","name":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_system_identity_storage":"1","test_user_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUODE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9bcb4d9cca184aaa","endpoint":"sb://iothub-ns-test-hub-9-22351162-5b5c05a1e7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstorebef7.blob.core.windows.net/;FileEndpoint=https://hubstorebef7.file.core.windows.net/;QueueEndpoint=https://hubstorebef7.queue.core.windows.net/;TableEndpoint=https://hubstorebef7.table.core.windows.net/;AccountName=hubstorebef7;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/611d472427e441ec8afdcc02c3a655e7":{"clientId":"10ece8a9-1413-4397-8822-4eed818216ca","principalId":"8a990a34-b7b5-491b-a1ed-1de348fefcee"}}},"systemData":{"createdAt":"2022-10-19T23:25:41.6466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '112349' + - '201170' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:12 GMT + - Wed, 19 Oct 2022 23:42:08 GMT expires: - '-1' pragma: @@ -2532,6 +3209,7 @@ interactions: - '' - '' - '' + - '' status: code: 200 message: OK @@ -2549,13 +3227,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0zo=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDkY=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -2564,7 +3242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:13 GMT + - Wed, 19 Oct 2022 23:42:08 GMT expires: - '-1' pragma: @@ -2596,13 +3274,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0zo=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDkY=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -2611,7 +3289,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:13 GMT + - Wed, 19 Oct 2022 23:42:08 GMT expires: - '-1' pragma: @@ -2630,7 +3308,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "etag": "AAAAAA/P0zo=", "properties": + body: '{"location": "westus", "tags": {}, "etag": "AAAAABPuDkY=", "properties": {"state": "Active", "provisioningState": "Succeeded", "iotHubs": [], "allocationPolicy": "Hashed"}, "sku": {"name": "S1", "capacity": 1}}' headers: @@ -2649,16 +3327,16 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P0zo=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDkY=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMGIwMjY4MGUtMmEyZS00MTJiLTk4YjEtODhlMmE0YTQ5MDY0O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfZTJhYWMwNjMtYWI1ZS00MjAyLTk2MTctNDdlODE1ZTQ5YzI4O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo cache-control: - no-cache content-length: @@ -2666,7 +3344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:15 GMT + - Wed, 19 Oct 2022 23:42:10 GMT expires: - '-1' pragma: @@ -2696,10 +3374,57 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfZTJhYWMwNjMtYWI1ZS00MjAyLTk2MTctNDdlODE1ZTQ5YzI4O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:42: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot dps linked-hub delete + Connection: + - keep-alive + ParameterSetName: + - --dps-name -g --linked-hub + User-Agent: + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMGIwMjY4MGUtMmEyZS00MTJiLTk4YjEtODhlMmE0YTQ5MDY0O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfZTJhYWMwNjMtYWI1ZS00MjAyLTk2MTctNDdlODE1ZTQ5YzI4O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -2711,7 +3436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:45 GMT + - Wed, 19 Oct 2022 23:42:40 GMT expires: - '-1' pragma: @@ -2743,13 +3468,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P07k=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDt0=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -2758,7 +3483,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:45 GMT + - Wed, 19 Oct 2022 23:42:40 GMT expires: - '-1' pragma: @@ -2790,13 +3515,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P07k=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDt0=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -2805,7 +3530,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:47 GMT + - Wed, 19 Oct 2022 23:42:41 GMT expires: - '-1' pragma: @@ -2839,9 +3564,9 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003/IotHubKeys/iothubowner/listkeys?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003/IotHubKeys/iothubowner/listkeys?api-version=2022-04-30-preview response: body: string: '{"keyName":"iothubowner","primaryKey":"mock_key","secondaryKey":"mock_key","rights":"RegistryWrite, @@ -2854,7 +3579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:48 GMT + - Wed, 19 Oct 2022 23:42:42 GMT expires: - '-1' pragma: @@ -2870,7 +3595,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -2888,106 +3613,171 @@ interactions: ParameterSetName: - --name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGUsk7g=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGaryzE=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint2","id":"ced63e9b-9199-4cf6-9cf6-6f296608496c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[],"routes":[{"name":"DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUOC4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:36:32.2433333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF4uNdI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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","publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADFw9ud4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGWFmQM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Network/privateEndpoints/raharri-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1/PrivateEndpointConnections/raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","name":"raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubAu2021","name":"rkesslerHubAu2021","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF2lvbw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerHubAu2021.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubau2021","endpoint":"sb://iothub-ns-rkesslerhu-14200631-32ee399d59.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-08-13T22:57:08.61Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGeR7j4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=queue-1","authenticationType":"keyBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/vilit-pytest-hub","name":"vilit-pytest-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGeR8z0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-pytest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-pytest-hub","endpoint":"sb://iothub-ns-vilit-pyte-14648386-9899ac09c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/0f1f6d17f7184b1eabf7aa3a0739f247":{"clientId":"6382d1f3-b895-46bf-8ced-f29a25e5c605","principalId":"f23f1a99-1ab4-4fde-979c-0559a872a14d"}},"principalId":"72c1c80d-574e-43cd-8816-67e00e9811b4"},"systemData":{"createdAt":"2021-09-02T22:03:21.34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"exam":"test2","exam2":"test3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGVr4g0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-16240640-68efd3638f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vilit-hub-test;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"endpoint","id":"9a207810-9af0-4cb7-831b-ab665c16d6a2","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[]},"routes":[{"name":"route","source":"DeviceMessages","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:37:52.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-3","name":"smoke-test-3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF3waEw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"smoke-test-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-3","endpoint":"sb://iothub-ns-smoke-test-16241276-718954597f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T23:04:32.7833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADGZ/Kl4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADGVqjsc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/delete-me-defender","name":"delete-me-defender","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGcDjPI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"delete-me-defender.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"delete-me-defender","endpoint":"sb://iothub-ns-delete-me-18739372-2a78bad565.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-19T23:42:50.3633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-adu-hub","name":"askhura-adu-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGcMC5k=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-adu-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-adu-hub","endpoint":"sb://iothub-ns-askhura-ad-18747832-281cfb3511.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-20T16:31:22.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test102","name":"vilit-hub-test102","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"a":"b","c":"d"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGeSmcc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test102.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test102","endpoint":"sb://iothub-ns-vilit-hub-18882672-df6c5178ea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-02T23:55:27.8Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGSQpzg=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil - South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerNorthEurope","name":"rkesslerNorthEurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFwD1S8=","properties":{"locations":[{"location":"North - Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerNorthEurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslernortheurope","endpoint":"sb://iothub-ns-rkesslerno-6065260-e40e15a83a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-20T11:41:22.963Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerGWV2","name":"rkesslerGWV2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFq+hyg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerGWV2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslergwv2","endpoint":"sb://iothub-ns-rkesslergw-6461604-f593ab0244.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-12-09T00:15:53.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADGeR9As=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGTYFSI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFr9z3Y=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGdQeYA=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[{"key":"sdfsdsds","value":"asdfasdfsd","endpointNames":["asdfghjkl"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGTYFR4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg-canary/providers/Microsoft.Devices/IotHubs/pamontg-mqtt","name":"pamontg-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg-canary","etag":"AAAADGaUao8=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg-mqtt","endpoint":"sb://iothub-ns-pamontg-mq-16300691-eece1b528b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://upxservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=devicework","authenticationType":"keyBased","name":"pamontg-sb-q","id":"bac59f5b-0ff1-4ac8-a5fd-533621906dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"hackathon2021"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=topic-1","authenticationType":"keyBased","name":"pamontg-sb-t","id":"c34a8785-fca4-44fc-b6fb-12185269a4dc","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-mqtt;SharedAccessKey=****;EntityPath=captured","authenticationType":"keyBased","name":"pamontg-eh","id":"a687e71d-0a05-4dc4-968b-9b8e6e0fa955","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontgmqttstore;AccountKey=****","containerName":"mqttstore","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"JSON","authenticationType":"keyBased","name":"MqttColdStorage","id":"b3c5e496-191c-4e8e-b0b8-65ca9c478f9f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg-canary"}]},"routes":[{"name":"MqttRoute","source":"MqttBrokerMessages","condition":"true","endpointNames":["MqttColdStorage"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-06T19:21:38.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-mqtt","name":"vilit-test-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADF/UJJg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-mqtt","endpoint":"sb://iothub-ns-vilit-test-16754325-6ea7e5609a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-07T20:25:18.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-broker","name":"vilit-test-broker","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADGCxQyk=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-broker.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-broker","endpoint":"sb://iothub-ns-vilit-test-16990908-50b5f5df01.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"MqttBrokerRoute","source":"MqttBrokerMessages","condition":"STARTS_WITH($mqtt-topic, - \"vehicles/\")","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-21T20:53:27.9466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","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},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFrmLTA=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADGcZeik=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"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":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_PaymaunHub;SharedAccessKey=****;EntityPath=paymauneventhub","name":"myEventhubEp","id":"c9b7ab5b-7624-44a4-a1ad-f598f0962fd1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=TestPolicy;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"MyEHEndpoint","id":"df3df736-f923-4f92-9d53-32a6ee66a03e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub","name":"yingworkhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADGHItR4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"1.0.0.0"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.0"}]},"hostName":"yingworkhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingworkhub","endpoint":"sb://iothub-ns-yingworkhu-7810654-bfabd1a47f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","name":"test222","id":"cdd74cb4-e0db-4cf8-8bc7-8f7f4f3345b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","authenticationType":"keyBased","name":"test333","id":"7d19929b-0545-4f24-8321-0835e1f0d49b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT5H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT5H","maxDeliveryCount":19}},"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/adt-test/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub/PrivateEndpointConnections/yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","name":"yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-02-03T01:11:50.883Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGcaz2A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/BillableModulesTestHub","name":"BillableModulesTestHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6FwK4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"BillableModulesTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"billablemodulestesthub","endpoint":"sb://iothub-ns-billablemo-16397238-86d909a7ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-15T01:34:40.3366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeau0Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}},{"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":"AAAADFv9nug=","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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADFv97l0=","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":{"type":"None"},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADGUso9M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"192.1.1.1"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"192.1.1.1"}]},"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-6621eea138.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg;SharedAccessKey=****;EntityPath=captured","name":"pamontg-eh","id":"50d18bf3-3b04-4b57-b910-315157e6bd44","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"store1","id":"e970e1b8-93f0-4b67-8196-25ff6533b44c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"store2","id":"5c98782c-15b1-4f24-a086-2e6b4eee191c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=pamontgtsi;AccountKey=****","containerName":"hubcontainer"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"7d0f402c-d032-4a55-a6be-763d4252af10"},"systemData":{"createdAt":"2020-08-12T17:49:08.82Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF5AJEc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-int-test-hub","name":"rk-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGTYLuw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-int-test-hub","endpoint":"sb://iothub-ns-rk-cli-int-6335385-8cf2a6e686.servicebus.windows.net/"}},"routing":{"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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"23c984de-d8ee-45f9-83ea-c0930a6a5665"},"systemData":{"createdAt":"2020-12-03T18:15:27.6Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg2","name":"pamontg2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADFwGQoA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg2","endpoint":"sb://iothub-ns-pamontg2-13844841-cb639165c1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-07-27T23:04:46.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-2","name":"smoke-test-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXl3wE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"smoke-test-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-2","endpoint":"sb://iothub-ns-smoke-test-16240457-a5759ac96a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:07:45.04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGchvk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/deleteme4","name":"deleteme4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXBpsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"deleteme4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"deleteme4","endpoint":"sb://iothub-ns-deleteme4-18107980-f759f5ba0d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-18T20:29:38.2566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","name":"test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGboTok=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-18T17:40:18.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdRvik=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-757cddec85f8484bad237323ee4552e4","name":"test-dps-hub-757cddec85f8484bad237323ee4552e4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-318f81a1ad2b4058831d394f4cfb1f68"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGdk8X8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T09:00:38.1166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-c10aed4859874d1f8f5e539df9fa9510","name":"test-hub-c10aed4859874d1f8f5e539df9fa9510","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdqOzo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c10aed4859874d1f8f5e539df9fa9510.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c10aed4859874d1f","endpoint":"sb://iothub-ns-test-hub-c-18839450-98dd20cc30.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T21:06:07.2833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","name":"test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-36ca1f9401c74457a99a9a06df42d114"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGd50/g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-30T08:36:44.1333333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1e7bee8526cf496f9a64c57f34822ce4","name":"test-hub-1e7bee8526cf496f9a64c57f34822ce4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python39 06446c32-6f24-573c-0426-5702c48efd75","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUQQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1e7bee8526cf496f9a64c57f34822ce4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1e7bee8526cf496f","endpoint":"sb://iothub-ns-test-hub-1-22351093-2f3a821b54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:21:01.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-fb08f18a3649465b8eb0e4afe2ebffac","name":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1","test_twin_properties_update":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUP+w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-fb08f18a3649465b","endpoint":"sb://iothub-ns-test-hub-f-22351157-037e87a950.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:18.8733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","name":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_system_identity_storage":"1","test_user_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUQWY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9bcb4d9cca184aaa","endpoint":"sb://iothub-ns-test-hub-9-22351162-5b5c05a1e7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstorebef7.blob.core.windows.net/;FileEndpoint=https://hubstorebef7.file.core.windows.net/;QueueEndpoint=https://hubstorebef7.queue.core.windows.net/;TableEndpoint=https://hubstorebef7.table.core.windows.net/;AccountName=hubstorebef7;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:41.6466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '112349' + - '200892' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:52 GMT + - Wed, 19 Oct 2022 23:42:49 GMT expires: - '-1' pragma: @@ -3008,6 +3798,7 @@ interactions: - '' - '' - '' + - '' status: code: 200 message: OK @@ -3025,106 +3816,171 @@ interactions: ParameterSetName: - --dps-name -g --connection-string User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGUsk7g=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGaryzE=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint2","id":"ced63e9b-9199-4cf6-9cf6-6f296608496c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[],"routes":[{"name":"DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUOC4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:36:32.2433333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF4uNdI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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","publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADFw9ud4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGWFmQM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Network/privateEndpoints/raharri-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1/PrivateEndpointConnections/raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","name":"raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubAu2021","name":"rkesslerHubAu2021","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF2lvbw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerHubAu2021.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubau2021","endpoint":"sb://iothub-ns-rkesslerhu-14200631-32ee399d59.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-08-13T22:57:08.61Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGeR7j4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=queue-1","authenticationType":"keyBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/vilit-pytest-hub","name":"vilit-pytest-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGeR8z0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-pytest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-pytest-hub","endpoint":"sb://iothub-ns-vilit-pyte-14648386-9899ac09c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/0f1f6d17f7184b1eabf7aa3a0739f247":{"clientId":"6382d1f3-b895-46bf-8ced-f29a25e5c605","principalId":"f23f1a99-1ab4-4fde-979c-0559a872a14d"}},"principalId":"72c1c80d-574e-43cd-8816-67e00e9811b4"},"systemData":{"createdAt":"2021-09-02T22:03:21.34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"exam":"test2","exam2":"test3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGVr4g0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-16240640-68efd3638f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vilit-hub-test;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"endpoint","id":"9a207810-9af0-4cb7-831b-ab665c16d6a2","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[]},"routes":[{"name":"route","source":"DeviceMessages","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:37:52.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-3","name":"smoke-test-3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF3waEw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"smoke-test-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-3","endpoint":"sb://iothub-ns-smoke-test-16241276-718954597f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T23:04:32.7833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADGZ/Kl4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADGVqjsc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/delete-me-defender","name":"delete-me-defender","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGcDjPI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"delete-me-defender.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"delete-me-defender","endpoint":"sb://iothub-ns-delete-me-18739372-2a78bad565.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-19T23:42:50.3633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-adu-hub","name":"askhura-adu-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGcMC5k=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-adu-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-adu-hub","endpoint":"sb://iothub-ns-askhura-ad-18747832-281cfb3511.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-20T16:31:22.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test102","name":"vilit-hub-test102","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"a":"b","c":"d"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGeSmcc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test102.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test102","endpoint":"sb://iothub-ns-vilit-hub-18882672-df6c5178ea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-02T23:55:27.8Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGSQpzg=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil - South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerNorthEurope","name":"rkesslerNorthEurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFwD1S8=","properties":{"locations":[{"location":"North - Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerNorthEurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslernortheurope","endpoint":"sb://iothub-ns-rkesslerno-6065260-e40e15a83a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-20T11:41:22.963Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerGWV2","name":"rkesslerGWV2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFq+hyg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerGWV2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslergwv2","endpoint":"sb://iothub-ns-rkesslergw-6461604-f593ab0244.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-12-09T00:15:53.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADGeR9As=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGTYFSI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFr9z3Y=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGdQeYA=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[{"key":"sdfsdsds","value":"asdfasdfsd","endpointNames":["asdfghjkl"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGTYFR4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg-canary/providers/Microsoft.Devices/IotHubs/pamontg-mqtt","name":"pamontg-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg-canary","etag":"AAAADGaUao8=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg-mqtt","endpoint":"sb://iothub-ns-pamontg-mq-16300691-eece1b528b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://upxservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=devicework","authenticationType":"keyBased","name":"pamontg-sb-q","id":"bac59f5b-0ff1-4ac8-a5fd-533621906dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"hackathon2021"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=topic-1","authenticationType":"keyBased","name":"pamontg-sb-t","id":"c34a8785-fca4-44fc-b6fb-12185269a4dc","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-mqtt;SharedAccessKey=****;EntityPath=captured","authenticationType":"keyBased","name":"pamontg-eh","id":"a687e71d-0a05-4dc4-968b-9b8e6e0fa955","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontgmqttstore;AccountKey=****","containerName":"mqttstore","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"JSON","authenticationType":"keyBased","name":"MqttColdStorage","id":"b3c5e496-191c-4e8e-b0b8-65ca9c478f9f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg-canary"}]},"routes":[{"name":"MqttRoute","source":"MqttBrokerMessages","condition":"true","endpointNames":["MqttColdStorage"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-06T19:21:38.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-mqtt","name":"vilit-test-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADF/UJJg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-mqtt","endpoint":"sb://iothub-ns-vilit-test-16754325-6ea7e5609a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-07T20:25:18.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-broker","name":"vilit-test-broker","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADGCxQyk=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-broker.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-broker","endpoint":"sb://iothub-ns-vilit-test-16990908-50b5f5df01.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"MqttBrokerRoute","source":"MqttBrokerMessages","condition":"STARTS_WITH($mqtt-topic, - \"vehicles/\")","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-21T20:53:27.9466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","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},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFrmLTA=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADGcZeik=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"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":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_PaymaunHub;SharedAccessKey=****;EntityPath=paymauneventhub","name":"myEventhubEp","id":"c9b7ab5b-7624-44a4-a1ad-f598f0962fd1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=TestPolicy;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"MyEHEndpoint","id":"df3df736-f923-4f92-9d53-32a6ee66a03e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub","name":"yingworkhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADGHItR4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"1.0.0.0"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.0"}]},"hostName":"yingworkhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingworkhub","endpoint":"sb://iothub-ns-yingworkhu-7810654-bfabd1a47f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","name":"test222","id":"cdd74cb4-e0db-4cf8-8bc7-8f7f4f3345b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","authenticationType":"keyBased","name":"test333","id":"7d19929b-0545-4f24-8321-0835e1f0d49b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT5H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT5H","maxDeliveryCount":19}},"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/adt-test/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub/PrivateEndpointConnections/yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","name":"yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-02-03T01:11:50.883Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGcaz2A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/BillableModulesTestHub","name":"BillableModulesTestHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6FwK4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"BillableModulesTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"billablemodulestesthub","endpoint":"sb://iothub-ns-billablemo-16397238-86d909a7ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-15T01:34:40.3366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeau0Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}},{"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":"AAAADFv9nug=","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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADFv97l0=","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":{"type":"None"},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADGUso9M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"192.1.1.1"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"192.1.1.1"}]},"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-6621eea138.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg;SharedAccessKey=****;EntityPath=captured","name":"pamontg-eh","id":"50d18bf3-3b04-4b57-b910-315157e6bd44","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"store1","id":"e970e1b8-93f0-4b67-8196-25ff6533b44c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"store2","id":"5c98782c-15b1-4f24-a086-2e6b4eee191c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=pamontgtsi;AccountKey=****","containerName":"hubcontainer"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"7d0f402c-d032-4a55-a6be-763d4252af10"},"systemData":{"createdAt":"2020-08-12T17:49:08.82Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF5AJEc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-int-test-hub","name":"rk-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGTYLuw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-int-test-hub","endpoint":"sb://iothub-ns-rk-cli-int-6335385-8cf2a6e686.servicebus.windows.net/"}},"routing":{"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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"23c984de-d8ee-45f9-83ea-c0930a6a5665"},"systemData":{"createdAt":"2020-12-03T18:15:27.6Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg2","name":"pamontg2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADFwGQoA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg2","endpoint":"sb://iothub-ns-pamontg2-13844841-cb639165c1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-07-27T23:04:46.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-2","name":"smoke-test-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXl3wE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"smoke-test-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-2","endpoint":"sb://iothub-ns-smoke-test-16240457-a5759ac96a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:07:45.04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGchvk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/deleteme4","name":"deleteme4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXBpsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"deleteme4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"deleteme4","endpoint":"sb://iothub-ns-deleteme4-18107980-f759f5ba0d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-18T20:29:38.2566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","name":"test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGboTok=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-18T17:40:18.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdRvik=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-757cddec85f8484bad237323ee4552e4","name":"test-dps-hub-757cddec85f8484bad237323ee4552e4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-318f81a1ad2b4058831d394f4cfb1f68"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGdk8X8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T09:00:38.1166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-c10aed4859874d1f8f5e539df9fa9510","name":"test-hub-c10aed4859874d1f8f5e539df9fa9510","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdqOzo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c10aed4859874d1f8f5e539df9fa9510.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c10aed4859874d1f","endpoint":"sb://iothub-ns-test-hub-c-18839450-98dd20cc30.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T21:06:07.2833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","name":"test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-36ca1f9401c74457a99a9a06df42d114"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGd50/g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-30T08:36:44.1333333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1e7bee8526cf496f9a64c57f34822ce4","name":"test-hub-1e7bee8526cf496f9a64c57f34822ce4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python39 06446c32-6f24-573c-0426-5702c48efd75","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUQQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1e7bee8526cf496f9a64c57f34822ce4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1e7bee8526cf496f","endpoint":"sb://iothub-ns-test-hub-1-22351093-2f3a821b54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:21:01.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-fb08f18a3649465b8eb0e4afe2ebffac","name":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1","test_twin_properties_update":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUP+w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-fb08f18a3649465b","endpoint":"sb://iothub-ns-test-hub-f-22351157-037e87a950.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:18.8733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","name":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_storage":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_system_identity_storage":"1","test_user_identity_storage":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUQWY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9bcb4d9cca184aaa89476098f1e5f5d4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9bcb4d9cca184aaa","endpoint":"sb://iothub-ns-test-hub-9-22351162-5b5c05a1e7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstorebef7.blob.core.windows.net/;FileEndpoint=https://hubstorebef7.file.core.windows.net/;QueueEndpoint=https://hubstorebef7.queue.core.windows.net/;TableEndpoint=https://hubstorebef7.table.core.windows.net/;AccountName=hubstorebef7;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:41.6466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '112349' + - '200892' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:53 GMT + - Wed, 19 Oct 2022 23:42:56 GMT expires: - '-1' pragma: @@ -3145,6 +4001,7 @@ interactions: - '' - '' - '' + - '' status: code: 200 message: OK @@ -3162,13 +4019,13 @@ interactions: ParameterSetName: - --dps-name -g --connection-string User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P07k=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDt0=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -3177,7 +4034,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:55 GMT + - Wed, 19 Oct 2022 23:42:57 GMT expires: - '-1' pragma: @@ -3196,7 +4053,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "etag": "AAAAAA/P07k=", "properties": + body: '{"location": "westus", "tags": {}, "etag": "AAAAABPuDt0=", "properties": {"state": "Active", "provisioningState": "Succeeded", "iotHubs": [{"connectionString": "HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=mock_key;", "location": "westus"}], "allocationPolicy": "Hashed"}, "sku": {"name": "S1", @@ -3217,16 +4074,16 @@ interactions: ParameterSetName: - --dps-name -g --connection-string User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P07k=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=mock_key;","location":"westus"}],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuDt0=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=mock_key;","location":"westus"}],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfN2E3ZmM2MmUtZWI2MC00NjVhLThlOWMtOTNiM2RiOTY1MWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfOTk1YWJmMzAtNzQ0Zi00MDQ5LTkzMTMtZDQ2OTllNjc5MWQxO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo cache-control: - no-cache content-length: @@ -3234,7 +4091,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:43:58 GMT + - Wed, 19 Oct 2022 23:42:58 GMT expires: - '-1' pragma: @@ -3264,10 +4121,57 @@ interactions: ParameterSetName: - --dps-name -g --connection-string User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfOTk1YWJmMzAtNzQ0Zi00MDQ5LTkzMTMtZDQ2OTllNjc5MWQxO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:42:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot dps linked-hub create + Connection: + - keep-alive + ParameterSetName: + - --dps-name -g --connection-string + User-Agent: + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfN2E3ZmM2MmUtZWI2MC00NjVhLThlOWMtOTNiM2RiOTY1MWRhO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfOTk1YWJmMzAtNzQ0Zi00MDQ5LTkzMTMtZDQ2OTllNjc5MWQxO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -3279,7 +4183,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:44:27 GMT + - Wed, 19 Oct 2022 23:43:28 GMT expires: - '-1' pragma: @@ -3311,13 +4215,13 @@ interactions: ParameterSetName: - --dps-name -g --connection-string User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P1B4=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuD50=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -3326,7 +4230,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:44:27 GMT + - Wed, 19 Oct 2022 23:43:29 GMT expires: - '-1' pragma: @@ -3358,13 +4262,13 @@ interactions: ParameterSetName: - --dps-name -g --connection-string User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P1B4=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuD50=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -3373,7 +4277,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:44:29 GMT + - Wed, 19 Oct 2022 23:43:29 GMT expires: - '-1' pragma: @@ -3405,106 +4309,169 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGUsk7g=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGaryzE=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint2","id":"ced63e9b-9199-4cf6-9cf6-6f296608496c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[],"routes":[{"name":"DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUOC4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:36:32.2433333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF4uNdI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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","publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADFw9ud4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGWFmQM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Network/privateEndpoints/raharri-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1/PrivateEndpointConnections/raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","name":"raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubAu2021","name":"rkesslerHubAu2021","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF2lvbw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerHubAu2021.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubau2021","endpoint":"sb://iothub-ns-rkesslerhu-14200631-32ee399d59.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-08-13T22:57:08.61Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGeR7j4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=queue-1","authenticationType":"keyBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/vilit-pytest-hub","name":"vilit-pytest-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGeR8z0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-pytest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-pytest-hub","endpoint":"sb://iothub-ns-vilit-pyte-14648386-9899ac09c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/0f1f6d17f7184b1eabf7aa3a0739f247":{"clientId":"6382d1f3-b895-46bf-8ced-f29a25e5c605","principalId":"f23f1a99-1ab4-4fde-979c-0559a872a14d"}},"principalId":"72c1c80d-574e-43cd-8816-67e00e9811b4"},"systemData":{"createdAt":"2021-09-02T22:03:21.34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"exam":"test2","exam2":"test3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGVr4g0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-16240640-68efd3638f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vilit-hub-test;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"endpoint","id":"9a207810-9af0-4cb7-831b-ab665c16d6a2","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[]},"routes":[{"name":"route","source":"DeviceMessages","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:37:52.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-3","name":"smoke-test-3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF3waEw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"smoke-test-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-3","endpoint":"sb://iothub-ns-smoke-test-16241276-718954597f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T23:04:32.7833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADGZ/Kl4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADGVqjsc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/delete-me-defender","name":"delete-me-defender","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGcDjPI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"delete-me-defender.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"delete-me-defender","endpoint":"sb://iothub-ns-delete-me-18739372-2a78bad565.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-19T23:42:50.3633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-adu-hub","name":"askhura-adu-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGcMC5k=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-adu-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-adu-hub","endpoint":"sb://iothub-ns-askhura-ad-18747832-281cfb3511.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-20T16:31:22.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test102","name":"vilit-hub-test102","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"a":"b","c":"d"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGeSmcc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test102.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test102","endpoint":"sb://iothub-ns-vilit-hub-18882672-df6c5178ea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-02T23:55:27.8Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGSQpzg=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil - South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerNorthEurope","name":"rkesslerNorthEurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFwD1S8=","properties":{"locations":[{"location":"North - Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerNorthEurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslernortheurope","endpoint":"sb://iothub-ns-rkesslerno-6065260-e40e15a83a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-20T11:41:22.963Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerGWV2","name":"rkesslerGWV2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFq+hyg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerGWV2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslergwv2","endpoint":"sb://iothub-ns-rkesslergw-6461604-f593ab0244.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-12-09T00:15:53.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADGeR9As=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGTYFSI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFr9z3Y=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGdQeYA=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[{"key":"sdfsdsds","value":"asdfasdfsd","endpointNames":["asdfghjkl"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGTYFR4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg-canary/providers/Microsoft.Devices/IotHubs/pamontg-mqtt","name":"pamontg-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg-canary","etag":"AAAADGaUao8=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg-mqtt","endpoint":"sb://iothub-ns-pamontg-mq-16300691-eece1b528b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://upxservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=devicework","authenticationType":"keyBased","name":"pamontg-sb-q","id":"bac59f5b-0ff1-4ac8-a5fd-533621906dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"hackathon2021"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=topic-1","authenticationType":"keyBased","name":"pamontg-sb-t","id":"c34a8785-fca4-44fc-b6fb-12185269a4dc","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-mqtt;SharedAccessKey=****;EntityPath=captured","authenticationType":"keyBased","name":"pamontg-eh","id":"a687e71d-0a05-4dc4-968b-9b8e6e0fa955","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontgmqttstore;AccountKey=****","containerName":"mqttstore","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"JSON","authenticationType":"keyBased","name":"MqttColdStorage","id":"b3c5e496-191c-4e8e-b0b8-65ca9c478f9f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg-canary"}]},"routes":[{"name":"MqttRoute","source":"MqttBrokerMessages","condition":"true","endpointNames":["MqttColdStorage"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-06T19:21:38.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-mqtt","name":"vilit-test-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADF/UJJg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-mqtt","endpoint":"sb://iothub-ns-vilit-test-16754325-6ea7e5609a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-07T20:25:18.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-broker","name":"vilit-test-broker","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADGCxQyk=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-broker.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-broker","endpoint":"sb://iothub-ns-vilit-test-16990908-50b5f5df01.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"MqttBrokerRoute","source":"MqttBrokerMessages","condition":"STARTS_WITH($mqtt-topic, - \"vehicles/\")","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-21T20:53:27.9466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","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},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFrmLTA=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADGcZeik=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"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":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_PaymaunHub;SharedAccessKey=****;EntityPath=paymauneventhub","name":"myEventhubEp","id":"c9b7ab5b-7624-44a4-a1ad-f598f0962fd1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=TestPolicy;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"MyEHEndpoint","id":"df3df736-f923-4f92-9d53-32a6ee66a03e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub","name":"yingworkhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADGHItR4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"1.0.0.0"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.0"}]},"hostName":"yingworkhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingworkhub","endpoint":"sb://iothub-ns-yingworkhu-7810654-bfabd1a47f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","name":"test222","id":"cdd74cb4-e0db-4cf8-8bc7-8f7f4f3345b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","authenticationType":"keyBased","name":"test333","id":"7d19929b-0545-4f24-8321-0835e1f0d49b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT5H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT5H","maxDeliveryCount":19}},"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/adt-test/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub/PrivateEndpointConnections/yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","name":"yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-02-03T01:11:50.883Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGcaz2A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/BillableModulesTestHub","name":"BillableModulesTestHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6FwK4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"BillableModulesTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"billablemodulestesthub","endpoint":"sb://iothub-ns-billablemo-16397238-86d909a7ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-15T01:34:40.3366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeau0Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}},{"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":"AAAADFv9nug=","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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADFv97l0=","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":{"type":"None"},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADGUso9M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"192.1.1.1"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"192.1.1.1"}]},"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-6621eea138.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg;SharedAccessKey=****;EntityPath=captured","name":"pamontg-eh","id":"50d18bf3-3b04-4b57-b910-315157e6bd44","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"store1","id":"e970e1b8-93f0-4b67-8196-25ff6533b44c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"store2","id":"5c98782c-15b1-4f24-a086-2e6b4eee191c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=pamontgtsi;AccountKey=****","containerName":"hubcontainer"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"7d0f402c-d032-4a55-a6be-763d4252af10"},"systemData":{"createdAt":"2020-08-12T17:49:08.82Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF5AJEc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-int-test-hub","name":"rk-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGTYLuw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-int-test-hub","endpoint":"sb://iothub-ns-rk-cli-int-6335385-8cf2a6e686.servicebus.windows.net/"}},"routing":{"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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"23c984de-d8ee-45f9-83ea-c0930a6a5665"},"systemData":{"createdAt":"2020-12-03T18:15:27.6Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg2","name":"pamontg2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADFwGQoA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg2","endpoint":"sb://iothub-ns-pamontg2-13844841-cb639165c1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-07-27T23:04:46.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-2","name":"smoke-test-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXl3wE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"smoke-test-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-2","endpoint":"sb://iothub-ns-smoke-test-16240457-a5759ac96a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:07:45.04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGchvk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/deleteme4","name":"deleteme4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXBpsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"deleteme4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"deleteme4","endpoint":"sb://iothub-ns-deleteme4-18107980-f759f5ba0d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-18T20:29:38.2566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","name":"test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGboTok=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-18T17:40:18.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdRvik=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-757cddec85f8484bad237323ee4552e4","name":"test-dps-hub-757cddec85f8484bad237323ee4552e4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-318f81a1ad2b4058831d394f4cfb1f68"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGdk8X8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T09:00:38.1166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-c10aed4859874d1f8f5e539df9fa9510","name":"test-hub-c10aed4859874d1f8f5e539df9fa9510","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdqOzo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c10aed4859874d1f8f5e539df9fa9510.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c10aed4859874d1f","endpoint":"sb://iothub-ns-test-hub-c-18839450-98dd20cc30.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T21:06:07.2833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","name":"test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-36ca1f9401c74457a99a9a06df42d114"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGd50/g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-30T08:36:44.1333333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1e7bee8526cf496f9a64c57f34822ce4","name":"test-hub-1e7bee8526cf496f9a64c57f34822ce4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python39 06446c32-6f24-573c-0426-5702c48efd75","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUQQU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1e7bee8526cf496f9a64c57f34822ce4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1e7bee8526cf496f","endpoint":"sb://iothub-ns-test-hub-1-22351093-2f3a821b54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:21:01.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-fb08f18a3649465b8eb0e4afe2ebffac","name":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUQsc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-fb08f18a3649465b","endpoint":"sb://iothub-ns-test-hub-f-22351157-037e87a950.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:18.8733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '112349' + - '198643' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:44:32 GMT + - Wed, 19 Oct 2022 23:43:37 GMT expires: - '-1' pragma: @@ -3525,6 +4492,7 @@ interactions: - '' - '' - '' + - '' status: code: 200 message: OK @@ -3542,13 +4510,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P1B4=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuD50=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -3557,7 +4525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:44:32 GMT + - Wed, 19 Oct 2022 23:43:38 GMT expires: - '-1' pragma: @@ -3589,13 +4557,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P1B4=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuD50=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -3604,7 +4572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:44:32 GMT + - Wed, 19 Oct 2022 23:43:38 GMT expires: - '-1' pragma: @@ -3623,7 +4591,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "etag": "AAAAAA/P1B4=", "properties": + body: '{"location": "westus", "tags": {}, "etag": "AAAAABPuD50=", "properties": {"state": "Active", "provisioningState": "Succeeded", "iotHubs": [], "allocationPolicy": "Hashed"}, "sku": {"name": "S1", "capacity": 1}}' headers: @@ -3642,774 +4610,24 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P1B4=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuD50=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYTZjYWE3YTItNmUwYS00NDg0LThmMzQtNjBlZDEzNDRhN2Q2O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMTAxZmY0ZjgtNGUzMS00NzAxLTg0MzYtNDg3N2Y5YjhhNmM5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo cache-control: - no-cache content-length: - - '538' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 May 2022 17:44:35 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - iot dps linked-hub delete - Connection: - - keep-alive - ParameterSetName: - - --dps-name -g --linked-hub - User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYTZjYWE3YTItNmUwYS00NDg0LThmMzQtNjBlZDEzNDRhN2Q2O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 May 2022 17:45:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - iot dps linked-hub delete - Connection: - - keep-alive - ParameterSetName: - - --dps-name -g --linked-hub - User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 - response: - body: - string: '{"etag":"AAAAAA/P1Lo=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '681' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 May 2022 17:45:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot dps linked-hub delete - Connection: - - keep-alive - ParameterSetName: - - --dps-name -g --linked-hub - User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 - response: - body: - string: '{"etag":"AAAAAA/P1Lo=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '681' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 May 2022 17:45:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot dps linked-hub create - Connection: - - keep-alive - ParameterSetName: - - --dps-name -g --connection-string - User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGUsk7g=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGaryzE=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint2","id":"ced63e9b-9199-4cf6-9cf6-6f296608496c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[],"routes":[{"name":"DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id - = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF4uNdI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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","publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADFw9ud4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGWFmQM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Network/privateEndpoints/raharri-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1/PrivateEndpointConnections/raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","name":"raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubAu2021","name":"rkesslerHubAu2021","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF2lvbw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerHubAu2021.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubau2021","endpoint":"sb://iothub-ns-rkesslerhu-14200631-32ee399d59.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-08-13T22:57:08.61Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGeR7j4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=queue-1","authenticationType":"keyBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/vilit-pytest-hub","name":"vilit-pytest-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGeR8z0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-pytest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-pytest-hub","endpoint":"sb://iothub-ns-vilit-pyte-14648386-9899ac09c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/0f1f6d17f7184b1eabf7aa3a0739f247":{"clientId":"6382d1f3-b895-46bf-8ced-f29a25e5c605","principalId":"f23f1a99-1ab4-4fde-979c-0559a872a14d"}},"principalId":"72c1c80d-574e-43cd-8816-67e00e9811b4"},"systemData":{"createdAt":"2021-09-02T22:03:21.34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"exam":"test2","exam2":"test3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGVr4g0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-16240640-68efd3638f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vilit-hub-test;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"endpoint","id":"9a207810-9af0-4cb7-831b-ab665c16d6a2","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[]},"routes":[{"name":"route","source":"DeviceMessages","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:37:52.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-3","name":"smoke-test-3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF3waEw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"smoke-test-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-3","endpoint":"sb://iothub-ns-smoke-test-16241276-718954597f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T23:04:32.7833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADGZ/Kl4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADGVqjsc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/delete-me-defender","name":"delete-me-defender","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGcDjPI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"delete-me-defender.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"delete-me-defender","endpoint":"sb://iothub-ns-delete-me-18739372-2a78bad565.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-19T23:42:50.3633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-adu-hub","name":"askhura-adu-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGcMC5k=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-adu-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-adu-hub","endpoint":"sb://iothub-ns-askhura-ad-18747832-281cfb3511.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-20T16:31:22.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test102","name":"vilit-hub-test102","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"a":"b","c":"d"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGeSmcc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test102.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test102","endpoint":"sb://iothub-ns-vilit-hub-18882672-df6c5178ea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-02T23:55:27.8Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGSQpzg=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil - South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerNorthEurope","name":"rkesslerNorthEurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFwD1S8=","properties":{"locations":[{"location":"North - Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerNorthEurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslernortheurope","endpoint":"sb://iothub-ns-rkesslerno-6065260-e40e15a83a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-20T11:41:22.963Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerGWV2","name":"rkesslerGWV2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFq+hyg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerGWV2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslergwv2","endpoint":"sb://iothub-ns-rkesslergw-6461604-f593ab0244.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-12-09T00:15:53.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADGeR9As=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGTYFSI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFr9z3Y=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGdQeYA=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[{"key":"sdfsdsds","value":"asdfasdfsd","endpointNames":["asdfghjkl"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGTYFR4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg-canary/providers/Microsoft.Devices/IotHubs/pamontg-mqtt","name":"pamontg-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg-canary","etag":"AAAADGaUao8=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg-mqtt","endpoint":"sb://iothub-ns-pamontg-mq-16300691-eece1b528b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://upxservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=devicework","authenticationType":"keyBased","name":"pamontg-sb-q","id":"bac59f5b-0ff1-4ac8-a5fd-533621906dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"hackathon2021"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=topic-1","authenticationType":"keyBased","name":"pamontg-sb-t","id":"c34a8785-fca4-44fc-b6fb-12185269a4dc","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-mqtt;SharedAccessKey=****;EntityPath=captured","authenticationType":"keyBased","name":"pamontg-eh","id":"a687e71d-0a05-4dc4-968b-9b8e6e0fa955","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontgmqttstore;AccountKey=****","containerName":"mqttstore","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"JSON","authenticationType":"keyBased","name":"MqttColdStorage","id":"b3c5e496-191c-4e8e-b0b8-65ca9c478f9f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg-canary"}]},"routes":[{"name":"MqttRoute","source":"MqttBrokerMessages","condition":"true","endpointNames":["MqttColdStorage"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-06T19:21:38.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-mqtt","name":"vilit-test-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADF/UJJg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-mqtt","endpoint":"sb://iothub-ns-vilit-test-16754325-6ea7e5609a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-07T20:25:18.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-broker","name":"vilit-test-broker","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADGCxQyk=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-broker.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-broker","endpoint":"sb://iothub-ns-vilit-test-16990908-50b5f5df01.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"MqttBrokerRoute","source":"MqttBrokerMessages","condition":"STARTS_WITH($mqtt-topic, - \"vehicles/\")","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-21T20:53:27.9466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","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},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFrmLTA=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADGcZeik=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"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":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_PaymaunHub;SharedAccessKey=****;EntityPath=paymauneventhub","name":"myEventhubEp","id":"c9b7ab5b-7624-44a4-a1ad-f598f0962fd1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=TestPolicy;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"MyEHEndpoint","id":"df3df736-f923-4f92-9d53-32a6ee66a03e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub","name":"yingworkhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADGHItR4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"1.0.0.0"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.0"}]},"hostName":"yingworkhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingworkhub","endpoint":"sb://iothub-ns-yingworkhu-7810654-bfabd1a47f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","name":"test222","id":"cdd74cb4-e0db-4cf8-8bc7-8f7f4f3345b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","authenticationType":"keyBased","name":"test333","id":"7d19929b-0545-4f24-8321-0835e1f0d49b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT5H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT5H","maxDeliveryCount":19}},"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/adt-test/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub/PrivateEndpointConnections/yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","name":"yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-02-03T01:11:50.883Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGcaz2A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/BillableModulesTestHub","name":"BillableModulesTestHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6FwK4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"BillableModulesTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"billablemodulestesthub","endpoint":"sb://iothub-ns-billablemo-16397238-86d909a7ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-15T01:34:40.3366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeau0Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}},{"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":"AAAADFv9nug=","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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADFv97l0=","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":{"type":"None"},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADGUso9M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"192.1.1.1"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"192.1.1.1"}]},"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-6621eea138.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg;SharedAccessKey=****;EntityPath=captured","name":"pamontg-eh","id":"50d18bf3-3b04-4b57-b910-315157e6bd44","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"store1","id":"e970e1b8-93f0-4b67-8196-25ff6533b44c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"store2","id":"5c98782c-15b1-4f24-a086-2e6b4eee191c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=pamontgtsi;AccountKey=****","containerName":"hubcontainer"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"7d0f402c-d032-4a55-a6be-763d4252af10"},"systemData":{"createdAt":"2020-08-12T17:49:08.82Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF5AJEc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-int-test-hub","name":"rk-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGTYLuw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-int-test-hub","endpoint":"sb://iothub-ns-rk-cli-int-6335385-8cf2a6e686.servicebus.windows.net/"}},"routing":{"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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"23c984de-d8ee-45f9-83ea-c0930a6a5665"},"systemData":{"createdAt":"2020-12-03T18:15:27.6Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg2","name":"pamontg2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADFwGQoA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg2","endpoint":"sb://iothub-ns-pamontg2-13844841-cb639165c1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-07-27T23:04:46.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-2","name":"smoke-test-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXl3wE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"smoke-test-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-2","endpoint":"sb://iothub-ns-smoke-test-16240457-a5759ac96a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:07:45.04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGchvk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/deleteme4","name":"deleteme4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXBpsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"deleteme4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"deleteme4","endpoint":"sb://iothub-ns-deleteme4-18107980-f759f5ba0d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-18T20:29:38.2566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","name":"test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGboTok=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-18T17:40:18.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdRvik=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-757cddec85f8484bad237323ee4552e4","name":"test-dps-hub-757cddec85f8484bad237323ee4552e4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-318f81a1ad2b4058831d394f4cfb1f68"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGdk8X8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T09:00:38.1166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-c10aed4859874d1f8f5e539df9fa9510","name":"test-hub-c10aed4859874d1f8f5e539df9fa9510","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdqOzo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c10aed4859874d1f8f5e539df9fa9510.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c10aed4859874d1f","endpoint":"sb://iothub-ns-test-hub-c-18839450-98dd20cc30.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T21:06:07.2833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","name":"test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-36ca1f9401c74457a99a9a06df42d114"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGd50/g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-30T08:36:44.1333333Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '112349' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 May 2022 17:45:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot dps linked-hub create - Connection: - - keep-alive - ParameterSetName: - - --dps-name -g --connection-string - User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 - response: - body: - string: '{"etag":"AAAAAA/P1Lo=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '681' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 May 2022 17:45: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: '{"location": "westus", "tags": {}, "etag": "AAAAAA/P1Lo=", "properties": - {"state": "Active", "provisioningState": "Succeeded", "iotHubs": [{"connectionString": - "hostname=iot000003.azure-devices.net;sharedaccesskeyname=iothubowner;SharedAccessKey=mock_key;", - "location": "westus"}], "allocationPolicy": "Hashed"}, "sku": {"name": "S1", - "capacity": 1}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot dps linked-hub create - Connection: - - keep-alive - Content-Length: - - '350' - Content-Type: - - application/json - ParameterSetName: - - --dps-name -g --connection-string - User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 - response: - body: - string: '{"etag":"AAAAAA/P1Lo=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"hostname=iot000003.azure-devices.net;sharedaccesskeyname=iothubowner;SharedAccessKey=mock_key;","location":"westus"}],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMzA3MTFlYmYtM2Y4Mi00NmFmLTllNTYtNWIzODk1MTRjNzE4O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo - cache-control: - - no-cache - content-length: - - '712' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 May 2022 17:45:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - iot dps linked-hub create - Connection: - - keep-alive - ParameterSetName: - - --dps-name -g --connection-string - User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMzA3MTFlYmYtM2Y4Mi00NmFmLTllNTYtNWIzODk1MTRjNzE4O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 May 2022 17:45:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - iot dps linked-hub create - Connection: - - keep-alive - ParameterSetName: - - --dps-name -g --connection-string - User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 - response: - body: - string: '{"etag":"AAAAAA/P1Wo=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '850' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 May 2022 17:45:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot dps linked-hub create - Connection: - - keep-alive - ParameterSetName: - - --dps-name -g --connection-string - User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 - response: - body: - string: '{"etag":"AAAAAA/P1Wo=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '850' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 May 2022 17:45:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot dps linked-hub delete - Connection: - - keep-alive - ParameterSetName: - - --dps-name -g --linked-hub - User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 - response: - body: - string: '{"value":[{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGUsk7g=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGaryzE=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint2","id":"ced63e9b-9199-4cf6-9cf6-6f296608496c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[],"routes":[{"name":"DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id - = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF4uNdI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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","publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADFw9ud4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGWFmQM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Network/privateEndpoints/raharri-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1/PrivateEndpointConnections/raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","name":"raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubAu2021","name":"rkesslerHubAu2021","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF2lvbw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerHubAu2021.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubau2021","endpoint":"sb://iothub-ns-rkesslerhu-14200631-32ee399d59.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-08-13T22:57:08.61Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGeR7j4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=queue-1","authenticationType":"keyBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/vilit-pytest-hub","name":"vilit-pytest-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGeR8z0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-pytest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-pytest-hub","endpoint":"sb://iothub-ns-vilit-pyte-14648386-9899ac09c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/0f1f6d17f7184b1eabf7aa3a0739f247":{"clientId":"6382d1f3-b895-46bf-8ced-f29a25e5c605","principalId":"f23f1a99-1ab4-4fde-979c-0559a872a14d"}},"principalId":"72c1c80d-574e-43cd-8816-67e00e9811b4"},"systemData":{"createdAt":"2021-09-02T22:03:21.34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"exam":"test2","exam2":"test3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGVr4g0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-16240640-68efd3638f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vilit-hub-test;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"endpoint","id":"9a207810-9af0-4cb7-831b-ab665c16d6a2","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[]},"routes":[{"name":"route","source":"DeviceMessages","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:37:52.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-3","name":"smoke-test-3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF3waEw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"smoke-test-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-3","endpoint":"sb://iothub-ns-smoke-test-16241276-718954597f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T23:04:32.7833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADGZ/Kl4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADGVqjsc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/delete-me-defender","name":"delete-me-defender","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGcDjPI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"delete-me-defender.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"delete-me-defender","endpoint":"sb://iothub-ns-delete-me-18739372-2a78bad565.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-19T23:42:50.3633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-adu-hub","name":"askhura-adu-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGcMC5k=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-adu-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-adu-hub","endpoint":"sb://iothub-ns-askhura-ad-18747832-281cfb3511.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-20T16:31:22.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test102","name":"vilit-hub-test102","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"a":"b","c":"d"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGeSmcc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test102.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test102","endpoint":"sb://iothub-ns-vilit-hub-18882672-df6c5178ea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-02T23:55:27.8Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGSQpzg=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil - South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerNorthEurope","name":"rkesslerNorthEurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFwD1S8=","properties":{"locations":[{"location":"North - Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerNorthEurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslernortheurope","endpoint":"sb://iothub-ns-rkesslerno-6065260-e40e15a83a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-20T11:41:22.963Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerGWV2","name":"rkesslerGWV2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFq+hyg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerGWV2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslergwv2","endpoint":"sb://iothub-ns-rkesslergw-6461604-f593ab0244.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-12-09T00:15:53.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADGeR9As=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGTYFSI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFr9z3Y=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGdQeYA=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[{"key":"sdfsdsds","value":"asdfasdfsd","endpointNames":["asdfghjkl"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGTYFR4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg-canary/providers/Microsoft.Devices/IotHubs/pamontg-mqtt","name":"pamontg-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg-canary","etag":"AAAADGaUao8=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg-mqtt","endpoint":"sb://iothub-ns-pamontg-mq-16300691-eece1b528b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://upxservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=devicework","authenticationType":"keyBased","name":"pamontg-sb-q","id":"bac59f5b-0ff1-4ac8-a5fd-533621906dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"hackathon2021"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=topic-1","authenticationType":"keyBased","name":"pamontg-sb-t","id":"c34a8785-fca4-44fc-b6fb-12185269a4dc","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-mqtt;SharedAccessKey=****;EntityPath=captured","authenticationType":"keyBased","name":"pamontg-eh","id":"a687e71d-0a05-4dc4-968b-9b8e6e0fa955","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontgmqttstore;AccountKey=****","containerName":"mqttstore","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"JSON","authenticationType":"keyBased","name":"MqttColdStorage","id":"b3c5e496-191c-4e8e-b0b8-65ca9c478f9f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg-canary"}]},"routes":[{"name":"MqttRoute","source":"MqttBrokerMessages","condition":"true","endpointNames":["MqttColdStorage"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-06T19:21:38.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-mqtt","name":"vilit-test-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADF/UJJg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-mqtt","endpoint":"sb://iothub-ns-vilit-test-16754325-6ea7e5609a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-07T20:25:18.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-broker","name":"vilit-test-broker","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADGCxQyk=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-broker.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-broker","endpoint":"sb://iothub-ns-vilit-test-16990908-50b5f5df01.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"MqttBrokerRoute","source":"MqttBrokerMessages","condition":"STARTS_WITH($mqtt-topic, - \"vehicles/\")","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-21T20:53:27.9466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","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},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFrmLTA=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADGcZeik=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"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":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_PaymaunHub;SharedAccessKey=****;EntityPath=paymauneventhub","name":"myEventhubEp","id":"c9b7ab5b-7624-44a4-a1ad-f598f0962fd1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=TestPolicy;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"MyEHEndpoint","id":"df3df736-f923-4f92-9d53-32a6ee66a03e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub","name":"yingworkhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADGHItR4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"1.0.0.0"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.0"}]},"hostName":"yingworkhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingworkhub","endpoint":"sb://iothub-ns-yingworkhu-7810654-bfabd1a47f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","name":"test222","id":"cdd74cb4-e0db-4cf8-8bc7-8f7f4f3345b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","authenticationType":"keyBased","name":"test333","id":"7d19929b-0545-4f24-8321-0835e1f0d49b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT5H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT5H","maxDeliveryCount":19}},"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/adt-test/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub/PrivateEndpointConnections/yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","name":"yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-02-03T01:11:50.883Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGcaz2A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/BillableModulesTestHub","name":"BillableModulesTestHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6FwK4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"BillableModulesTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"billablemodulestesthub","endpoint":"sb://iothub-ns-billablemo-16397238-86d909a7ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-15T01:34:40.3366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeau0Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}},{"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":"AAAADFv9nug=","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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADFv97l0=","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":{"type":"None"},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADGUso9M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"192.1.1.1"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"192.1.1.1"}]},"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-6621eea138.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg;SharedAccessKey=****;EntityPath=captured","name":"pamontg-eh","id":"50d18bf3-3b04-4b57-b910-315157e6bd44","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"store1","id":"e970e1b8-93f0-4b67-8196-25ff6533b44c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"store2","id":"5c98782c-15b1-4f24-a086-2e6b4eee191c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=pamontgtsi;AccountKey=****","containerName":"hubcontainer"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"7d0f402c-d032-4a55-a6be-763d4252af10"},"systemData":{"createdAt":"2020-08-12T17:49:08.82Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF5AJEc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-int-test-hub","name":"rk-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGTYLuw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-int-test-hub","endpoint":"sb://iothub-ns-rk-cli-int-6335385-8cf2a6e686.servicebus.windows.net/"}},"routing":{"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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"23c984de-d8ee-45f9-83ea-c0930a6a5665"},"systemData":{"createdAt":"2020-12-03T18:15:27.6Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg2","name":"pamontg2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADFwGQoA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg2","endpoint":"sb://iothub-ns-pamontg2-13844841-cb639165c1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-07-27T23:04:46.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-2","name":"smoke-test-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXl3wE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"smoke-test-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-2","endpoint":"sb://iothub-ns-smoke-test-16240457-a5759ac96a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:07:45.04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGchvk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/deleteme4","name":"deleteme4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXBpsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"deleteme4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"deleteme4","endpoint":"sb://iothub-ns-deleteme4-18107980-f759f5ba0d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-18T20:29:38.2566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","name":"test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGboTok=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-18T17:40:18.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdRvik=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-757cddec85f8484bad237323ee4552e4","name":"test-dps-hub-757cddec85f8484bad237323ee4552e4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-318f81a1ad2b4058831d394f4cfb1f68"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGdk8X8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T09:00:38.1166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-c10aed4859874d1f8f5e539df9fa9510","name":"test-hub-c10aed4859874d1f8f5e539df9fa9510","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdqOzo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c10aed4859874d1f8f5e539df9fa9510.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c10aed4859874d1f","endpoint":"sb://iothub-ns-test-hub-c-18839450-98dd20cc30.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T21:06:07.2833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","name":"test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-36ca1f9401c74457a99a9a06df42d114"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGd50/g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-30T08:36:44.1333333Z"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '112349' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 May 2022 17:45:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - iot dps linked-hub delete - Connection: - - keep-alive - ParameterSetName: - - --dps-name -g --linked-hub - User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 - response: - body: - string: '{"etag":"AAAAAA/P1Wo=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '850' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 03 May 2022 17:45: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 dps linked-hub delete - Connection: - - keep-alive - ParameterSetName: - - --dps-name -g --linked-hub - User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 - response: - body: - string: '{"etag":"AAAAAA/P1Wo=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '850' + - '538' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:45:47 GMT + - Wed, 19 Oct 2022 23:43:39 GMT expires: - '-1' pragma: @@ -4418,53 +4636,43 @@ 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-resource-requests: + - '4999' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: '{"location": "westus", "tags": {}, "etag": "AAAAAA/P1Wo=", "properties": - {"state": "Active", "provisioningState": "Succeeded", "iotHubs": [], "allocationPolicy": - "Hashed"}, "sku": {"name": "S1", "capacity": 1}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - iot dps linked-hub delete Connection: - keep-alive - Content-Length: - - '210' - Content-Type: - - application/json ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMTAxZmY0ZjgtNGUzMS00NzAxLTg0MzYtNDg3N2Y5YjhhNmM5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: - string: '{"etag":"AAAAAA/P1Wo=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"status":"Running"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfN2IwOGM1NDYtM2MyNC00N2M2LWE0YzAtYzU3YTUzNDk3MzQ2O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo cache-control: - no-cache content-length: - - '538' + - '20' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:45:50 GMT + - Wed, 19 Oct 2022 23:43:40 GMT expires: - '-1' pragma: @@ -4473,13 +4681,15 @@ 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-resource-requests: - - '4999' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -4494,10 +4704,10 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfN2IwOGM1NDYtM2MyNC00N2M2LWE0YzAtYzU3YTUzNDk3MzQ2O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMTAxZmY0ZjgtNGUzMS00NzAxLTg0MzYtNDg3N2Y5YjhhNmM5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -4509,7 +4719,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:19 GMT + - Wed, 19 Oct 2022 23:44:09 GMT expires: - '-1' pragma: @@ -4541,13 +4751,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P1oY=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuD9U=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -4556,7 +4766,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:20 GMT + - Wed, 19 Oct 2022 23:44:09 GMT expires: - '-1' pragma: @@ -4588,13 +4798,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P1oY=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuD9U=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -4603,7 +4813,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:20 GMT + - Wed, 19 Oct 2022 23:44:11 GMT expires: - '-1' pragma: @@ -4635,13 +4845,13 @@ interactions: ParameterSetName: - --dps-name -g --connection-string -l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P1oY=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuD9U=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -4650,7 +4860,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:21 GMT + - Wed, 19 Oct 2022 23:44:10 GMT expires: - '-1' pragma: @@ -4669,7 +4879,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "etag": "AAAAAA/P1oY=", "properties": + body: '{"location": "westus", "tags": {}, "etag": "AAAAABPuD9U=", "properties": {"state": "Active", "provisioningState": "Succeeded", "iotHubs": [{"connectionString": "HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=mock_key;", "location": "westus"}], "allocationPolicy": "Hashed"}, "sku": {"name": "S1", @@ -4690,16 +4900,16 @@ interactions: ParameterSetName: - --dps-name -g --connection-string -l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P1oY=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=mock_key;","location":"westus"}],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuD9U=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=mock_key;","location":"westus"}],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMmY1ZDhiNDktODViOS00NWFkLWE4MDctMjVmZDYzMjQ2NzEyO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYzM0MzY4ZjktYTcxMy00ZGUwLTliMTItNThiNmViYmU3OTgxO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo cache-control: - no-cache content-length: @@ -4707,7 +4917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:22 GMT + - Wed, 19 Oct 2022 23:44:13 GMT expires: - '-1' pragma: @@ -4737,10 +4947,57 @@ interactions: ParameterSetName: - --dps-name -g --connection-string -l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYzM0MzY4ZjktYTcxMy00ZGUwLTliMTItNThiNmViYmU3OTgxO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:44:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot dps linked-hub create + Connection: + - keep-alive + ParameterSetName: + - --dps-name -g --connection-string -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMmY1ZDhiNDktODViOS00NWFkLWE4MDctMjVmZDYzMjQ2NzEyO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYzM0MzY4ZjktYTcxMy00ZGUwLTliMTItNThiNmViYmU3OTgxO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -4752,7 +5009,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:52 GMT + - Wed, 19 Oct 2022 23:44:42 GMT expires: - '-1' pragma: @@ -4784,13 +5041,13 @@ interactions: ParameterSetName: - --dps-name -g --connection-string -l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P130=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuECU=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -4799,7 +5056,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:52 GMT + - Wed, 19 Oct 2022 23:44:42 GMT expires: - '-1' pragma: @@ -4831,13 +5088,13 @@ interactions: ParameterSetName: - --dps-name -g --connection-string -l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P130=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuECU=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -4846,7 +5103,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:53 GMT + - Wed, 19 Oct 2022 23:44:43 GMT expires: - '-1' pragma: @@ -4878,13 +5135,13 @@ interactions: ParameterSetName: - --dps-name -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P130=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuECU=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -4893,7 +5150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:54 GMT + - Wed, 19 Oct 2022 23:44:44 GMT expires: - '-1' pragma: @@ -4925,13 +5182,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P130=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuECU=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -4940,7 +5197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:55 GMT + - Wed, 19 Oct 2022 23:44:45 GMT expires: - '-1' pragma: @@ -4972,106 +5229,169 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/IotHubs?api-version=2022-04-30-preview response: body: - string: '{"value":[{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGUsk7g=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGaryzE=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint2","id":"ced63e9b-9199-4cf6-9cf6-6f296608496c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[],"routes":[{"name":"DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADHPBo0g=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHGo0u4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGuT7R4=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHH4kOw=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"endpoint-keybased","id":"1994965b-f0dc-4d8e-8460-81d2e0d81d09","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"rndpoint222","id":"789a03a5-4dcb-489d-b64c-41f1df04ca8e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tipverification","id":"fd7396bf-0dee-4da7-8cc8-3dca3c2f1f73","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmosdb-2.documents.azure.com","uri":"https://askhura-cosmosdb-2.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"changerouteendpointtest","id":"b785c9ae-ec10-4821-aa2a-4088837666e8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"asrudra"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"tip5testing","id":"914993e5-b393-40b2-a419-88fad7ebe2b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","uri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","name":"identity","id":"0ce9b802-22f3-4315-b314-febe398e535c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"enrichments":[{"key":"cosmosdb","value":"some + message","endpointNames":["changerouteendpointtest","endpoint-keybased","identity","rndpoint222","tip5testing","tipverification"]}],"routes":[{"name":"route2","source":"DeviceMessages","condition":"true","endpointNames":["rndpoint222"],"isEnabled":true},{"name":"cosmosdbroute","source":"DeviceMessages","condition":"true","endpointNames":["changerouteendpointtest"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2, + RootCertificateV2","allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-13T18:13:43.1480346Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHGo0vk=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://devicecatalogtest.documents.azure.com","uri":"https://devicecatalogtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"devicecatalogtest","collectionName":"partners","authenticationType":"keyBased","name":"sdgfdsgdfgfd","id":"b40a3b49-e930-42d6-8699-aa45d8f60780","subscriptionId":"48882085-bec2-4355-af61-53605e2247c2","resourceGroup":"iotcert"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"RootCertificateV2","disableLocalAuth":true,"allowedFqdnList":[],"rootCertificate":{"enableRootCertificateV2":true,"lastUpdatedTimeUtc":"2022-06-15T20:00:54.8686126Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-centralus-euap","name":"askhura-centralus-euap","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHOUlDg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"198.244.102.83","action":"Allow","ipMask":"198.244.102.83"}]},"hostName":"askhura-centralus-euap.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":5,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-centralus-euap","endpoint":"sb://iothub-ns-askhura-ce-19843042-a37bf2d4f7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-centralus-euap;SharedAccessKey=****;EntityPath=eventhub","authenticationType":"keyBased","name":"endpoint1","id":"90b75fb3-1bcc-4b15-8737-59bea6bbbcaf","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT7H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"deviceexport","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":23}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":19,"defaultTtlAsIso8601":"PT15H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT11H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-10-11T22:12:06.8501075Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"}},"principalId":"58102319-dbbf-44c1-b770-e546ee6db30d"},"systemData":{"createdAt":"2022-06-17T21:59:35.51Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingnewhub","name":"yingnewhub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADHMbJEc=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.1"}]},"hostName":"yingnewhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingnewhub","endpoint":"sb://iothub-ns-yingnewhub-19914655-bbe9047742.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://paymaunservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_ying;SharedAccessKey=****;EntityPath=test","authenticationType":"keyBased","name":"test222","id":"b0aa2bc8-4366-456e-8850-d181f58a834b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"test2","source":"MqttBrokerMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"test3","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["test222"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=adtdfextension;AccountKey=****","containerName":"extension","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-21T20:27:07.31Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-3","name":"askhura-canary-3","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGwYPcg=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-3","endpoint":"sb://iothub-ns-askhura-ca-20175506-ef0daac778.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{"enableRootCertificateV2":false,"lastUpdatedTimeUtc":"2022-07-12T17:11:10.0720632Z"}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-12T17:02:23.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","name":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jbqU=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-22b8fb880b2e43c9a1e3e2ff454da7a1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-22b8fb880b2e43c9","endpoint":"sb://iothub-ns-test-hub-2-21133926-fbc58f4b61.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T16:44:58.6166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/test-hub-a420aa2f2f9b4e3db01e181664ce54ef","name":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADG9jv/s=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a420aa2f2f9b4e3db01e181664ce54ef.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a420aa2f2f9b4e3d","endpoint":"sb://iothub-ns-test-hub-a-21134279-6a5d83cc36.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-24T17:12:19.0333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerWest/providers/Microsoft.Devices/IotHubs/rkesslerPreviewMode","name":"rkesslerPreviewMode","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerWest","etag":"AAAADHGpCRA=","properties":{"locations":[{"location":"Central + US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerPreviewMode.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerpreviewmode","endpoint":"sb://iothub-ns-rkesslerpr-21766246-8f6c59b28f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-22T22:59:23.5066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"ActivationFailed","provisioningState":"Failed","ipFilterRules":[],"eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADGsyzEQ=","properties":{"locations":[{"location":"East + US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADHMykKI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test-filter","action":"Accept","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Accept","ipMask":"1.4.2.4"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test-filter","action":"Allow","ipMask":"1.3.2.4"},{"filterName":"test-filter2","action":"Allow","ipMask":"1.4.2.4"}]},"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":[{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint","id":"e4673fe4-109c-481e-b9f6-3005dddb288e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint1","id":"8a46eed6-5ede-473d-97ac-03a7f987f97e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"endpointUri":"sb://PaymaunEventHubNamespace.servicebus.windows.net","entityPath":"paymauneventhub","authenticationType":"identityBased","name":"paymaunendpoint2","id":"d078240b-60a0-4dc4-bfdf-ceaa80be4210","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHH4iVI=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"73.97.236.151","action":"Allow","ipMask":"73.97.236.151"}]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"iliescontainer","authenticationType":"keyBased","partitionKeyName":"partitionkey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmosdb","id":"702db504-c63d-4d41-8506-68f7e093d20c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-101","name":"vilit-hub-test-101","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHOrqQk=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-101.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-101","endpoint":"sb://iothub-ns-vilit-hub-22245176-4b5b6217ee.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"ab399439-6710-458f-944d-8ce3d5d69eb8","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"146c7978-c231-4d5f-b3dc-abfceb7503f7"},"systemData":{"createdAt":"2022-10-14T21:13:58.2933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg/providers/Microsoft.Devices/IotHubs/iotc72p6ut3y2krn2sct","name":"iotc72p6ut3y2krn2sct","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgedhffdnq5xx6m2fj2bv66icuscjczc5wndvb622j3mvuy24lr6rmgmwcjropthncg","etag":"AAAADHPAjyo=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotc72p6ut3y2krn2sct.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotc72p6ut3y2krn2sct","endpoint":"sb://iothub-ns-iotc72p6ut-22330611-5fe5dc9f13.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:13:57.4066667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHPUOC4=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotnagymip-22351320-469ca1a9af.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:36:32.2433333Z"}},{"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":{"e":"b","test":"test"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHH4iIw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"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":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"testing","id":"77481355-9786-4a2b-8fc9-5dc7f6efefb5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"test","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"lifecycle_route","source":"DeviceLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"device_job_lifecycle_events_route","source":"DeviceJobLifecycleEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"connection_state_events_route","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableModuleSAS":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2ec95e8e-45d2-4680-bed8-1fe8433820b4"},"systemData":{"createdAt":"2020-03-31T22:25:20.24Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubEast","name":"rkesslerHubEast","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHLYYRs=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubEast.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":3,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubeast","endpoint":"sb://iothub-ns-rkesslerhu-4910438-dfc628c2e6.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=testtopic","name":"endpoint1","id":"64774abf-3add-4e83-b0e5-ad6c9a07fd42","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://az-cli-int-test-servicebus-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerTest;SharedAccessKey=****;EntityPath=az-cli-int-test-servicebus","name":"servicebustopic1","id":"89b2c8ba-0ce6-4cf8-959d-1ae596c680a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"cli-int-test-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"testRoute1","id":"421c6e84-9b92-474a-a4f0-812004ba5409","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","name":"ehubtest2","id":"1322ca79-5ab5-498f-aa42-9bb943a9fd86","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"Endpoint=sb://rk-eh-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerHubEast;SharedAccessKey=****;EntityPath=rk-event-hub","authenticationType":"keyBased","name":"testEndpoint","id":"f21787f6-3389-4a72-9ce1-9ae01853105a","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=rkstoragetest;AccountKey=****","containerName":"test3","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storage","id":"47bb7579-95c8-429e-8fda-8389e10dc90d","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkesslerstorage;AccountKey=****","containerName":"basicupdate","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"aaaaaaaaaaaaaaaaaaaa","id":"f37329dd-6c73-4421-8ae5-8dec1c296262","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rkesslerTest"}],"cosmosDBSqlCollections":[]},"enrichments":[],"routes":[{"name":"DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType = ''deleteDeviceIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"TelemetryModelInformation","source":"DeviceMessages","condition":"$iothub-interface-id = \"urn:azureiot:ModelDiscovery:ModelInformation:1\"","endpointNames":["events"],"isEnabled":true},{"name":"DeviceTwinEvents","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF4uNdI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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","publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADFw9ud4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGWFmQM=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Network/privateEndpoints/raharri-test"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1/PrivateEndpointConnections/raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","name":"raharri-test-1.c0b264f9-87d9-4ef7-aea5-6774bca55d85","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubAu2021","name":"rkesslerHubAu2021","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF2lvbw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerHubAu2021.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubau2021","endpoint":"sb://iothub-ns-rkesslerhu-14200631-32ee399d59.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-08-13T22:57:08.61Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGeR7j4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_askhura-test-rg;SharedAccessKey=****;EntityPath=queue-1","authenticationType":"keyBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/vilit-pytest-hub","name":"vilit-pytest-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGeR8z0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-pytest-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-pytest-hub","endpoint":"sb://iothub-ns-vilit-pyte-14648386-9899ac09c8.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/0f1f6d17f7184b1eabf7aa3a0739f247":{"clientId":"6382d1f3-b895-46bf-8ced-f29a25e5c605","principalId":"f23f1a99-1ab4-4fde-979c-0559a872a14d"}},"principalId":"72c1c80d-574e-43cd-8816-67e00e9811b4"},"systemData":{"createdAt":"2021-09-02T22:03:21.34Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"exam":"test2","exam2":"test3"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGVr4g0=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-16240640-68efd3638f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_vilit-hub-test;SharedAccessKey=****;EntityPath=eventhub2","authenticationType":"keyBased","name":"endpoint","id":"9a207810-9af0-4cb7-831b-ab665c16d6a2","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[]},"routes":[{"name":"route","source":"DeviceMessages","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:37:52.5566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-3","name":"smoke-test-3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF3waEw=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"smoke-test-3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-3","endpoint":"sb://iothub-ns-smoke-test-16241276-718954597f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T23:04:32.7833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADGZ/Kl4=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADGVqjsc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/delete-me-defender","name":"delete-me-defender","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGcDjPI=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"delete-me-defender.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"delete-me-defender","endpoint":"sb://iothub-ns-delete-me-18739372-2a78bad565.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-19T23:42:50.3633333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-adu-hub","name":"askhura-adu-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGcMC5k=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-adu-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-adu-hub","endpoint":"sb://iothub-ns-askhura-ad-18747832-281cfb3511.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-20T16:31:22.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test102","name":"vilit-hub-test102","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"a":"b","c":"d"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADGeSmcc=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test102.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test102","endpoint":"sb://iothub-ns-vilit-hub-18882672-df6c5178ea.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-02T23:55:27.8Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast - Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGSQpzg=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway - West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil - South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerNorthEurope","name":"rkesslerNorthEurope","type":"Microsoft.Devices/IotHubs","location":"northeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFwD1S8=","properties":{"locations":[{"location":"North - Europe","role":"primary"},{"location":"West Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerNorthEurope.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslernortheurope","endpoint":"sb://iothub-ns-rkesslerno-6065260-e40e15a83a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-20T11:41:22.963Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerGWV2","name":"rkesslerGWV2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFq+hyg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerGWV2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslergwv2","endpoint":"sb://iothub-ns-rkesslergw-6461604-f593ab0244.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","publicNetworkAccess":"Enabled"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-12-09T00:15:53.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rido-validations/providers/Microsoft.Devices/IotHubs/ridouai","name":"ridouai","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rido-validations","etag":"AAAADGeR9As=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ridouai.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ridouai","endpoint":"sb://iothub-ns-ridouai-10068656-2089e0e3d0.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/DevUX-Validation/providers/Microsoft.ManagedIdentity/userAssignedIdentities/RidoAppsZero":{"clientId":"14dbbbff-b140-4d4d-8e93-342767eccaed","principalId":"a1cba8fb-b87d-4874-9889-ffb0301da996"}},"principalId":"39e4264a-8ec3-4ff4-bbd2-79ce7013d718"},"systemData":{"createdAt":"2021-04-19T21:41:37.127Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunCanaryHub","name":"PaymaunCanaryHub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGTYFSI=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunCanaryHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymauncanaryhub","endpoint":"sb://iothub-ns-paymauncan-10310011-6987067cc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"037b18ad-6223-46a5-8c29-38decf34adb4"},"systemData":{"createdAt":"2021-04-26T21:57:51.633Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerCentralEUAP","name":"rkesslerCentralEUAP","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFr9z3Y=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerCentralEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslercentraleuap","endpoint":"sb://iothub-ns-rkesslerce-11307302-081dd4122e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_rkesslerCentralEUAP;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"adfasdf","id":"d257224f-c654-4732-8050-5070a3289394","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-05-24T21:28:58.873Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-hub","name":"askhura-canary-hub","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGdQeYA=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-hub","endpoint":"sb://iothub-ns-askhura-ca-14484209-edda2c9cc5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"eventhubendpoint","id":"b7b561d4-b013-44b6-8fae-f500a98f8301","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkiotstorage2;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"sfgsdgsdgds","id":"1bd38b37-d87a-4b74-bf7c-55db1cec46ca","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}]},"enrichments":[{"key":"sdfsdsds","value":"asdfasdfsd","endpointNames":["asdfghjkl"]}],"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"2f1c3c88-510c-4d4a-9952-2b2ff442471a"},"systemData":{"createdAt":"2021-08-26T17:58:44.9966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-canary-2","name":"askhura-canary-2","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADGTYFR4=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-canary-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-canary-2","endpoint":"sb://iothub-ns-askhura-ca-14605461-4ef323760e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":true,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"2cee2b73-f50a-46be-877c-5101746daa34"},"systemData":{"createdAt":"2021-08-31T19:07:32.63Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg-canary/providers/Microsoft.Devices/IotHubs/pamontg-mqtt","name":"pamontg-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg-canary","etag":"AAAADGaUao8=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg-mqtt","endpoint":"sb://iothub-ns-pamontg-mq-16300691-eece1b528b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"connectionString":"Endpoint=sb://upxservicebusnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=devicework","authenticationType":"keyBased","name":"pamontg-sb-q","id":"bac59f5b-0ff1-4ac8-a5fd-533621906dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"hackathon2021"}],"serviceBusTopics":[{"connectionString":"Endpoint=sb://rk-sb-namespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-canary;SharedAccessKey=****;EntityPath=topic-1","authenticationType":"keyBased","name":"pamontg-sb-t","id":"c34a8785-fca4-44fc-b6fb-12185269a4dc","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg-mqtt;SharedAccessKey=****;EntityPath=captured","authenticationType":"keyBased","name":"pamontg-eh","id":"a687e71d-0a05-4dc4-968b-9b8e6e0fa955","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontgmqttstore;AccountKey=****","containerName":"mqttstore","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"JSON","authenticationType":"keyBased","name":"MqttColdStorage","id":"b3c5e496-191c-4e8e-b0b8-65ca9c478f9f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg-canary"}]},"routes":[{"name":"MqttRoute","source":"MqttBrokerMessages","condition":"true","endpointNames":["MqttColdStorage"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-06T19:21:38.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-mqtt","name":"vilit-test-mqtt","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADF/UJJg=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-mqtt.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-mqtt","endpoint":"sb://iothub-ns-vilit-test-16754325-6ea7e5609a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-07T20:25:18.41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-broker/providers/Microsoft.Devices/IotHubs/vilit-test-broker","name":"vilit-test-broker","type":"Microsoft.Devices/IotHubs","location":"centraluseuap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-broker","etag":"AAAADGCxQyk=","properties":{"locations":[{"location":"Central - US EUAP","role":"primary"},{"location":"East US 2 EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-test-broker.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-test-broker","endpoint":"sb://iothub-ns-vilit-test-16990908-50b5f5df01.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"MqttBrokerRoute","source":"MqttBrokerMessages","condition":"STARTS_WITH($mqtt-topic, - \"vehicles/\")","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":"MqttBroker","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-01-21T20:53:27.9466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ADU/providers/Microsoft.Devices/IotHubs/adu-privatepreview-hub","name":"adu-privatepreview-hub","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ADU","etag":"AAAADFmIPoQ=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","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},"identity":{"type":"None"},"systemData":{"createdAt":"2020-10-07T20:33:01.093Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerEastEUAP","name":"rkesslerEastEUAP","type":"Microsoft.Devices/IotHubs","location":"eastus2euap","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADFrmLTA=","properties":{"locations":[{"location":"East - US 2 EUAP","role":"primary"},{"location":"Central US EUAP","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerEastEUAP.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslereasteuap","endpoint":"sb://iothub-ns-rkesslerea-8983535-c5e2500f5d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-03-17T22:13:07.4Z"}},{"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":"AAAADGcZeik=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"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":[{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_PaymaunHub;SharedAccessKey=****;EntityPath=paymauneventhub","name":"myEventhubEp","id":"c9b7ab5b-7624-44a4-a1ad-f598f0962fd1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"},{"connectionString":"Endpoint=sb://paymauneventhubnamespace.servicebus.windows.net:5671/;SharedAccessKeyName=TestPolicy;SharedAccessKey=****;EntityPath=paymauneventhub","authenticationType":"keyBased","name":"MyEHEndpoint","id":"df3df736-f923-4f92-9d53-32a6ee66a03e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false}},"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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"4b7391c6-0e52-4226-af5b-bf287993966a"},"systemData":{"createdAt":"2019-10-23T23:13:57.47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub","name":"yingworkhub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"ying","etag":"AAAADGHItR4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"1.0.0.0"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"1.0.0.0"}]},"hostName":"yingworkhub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"yingworkhub","endpoint":"sb://iothub-ns-yingworkhu-7810654-bfabd1a47f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","name":"test222","id":"cdd74cb4-e0db-4cf8-8bc7-8f7f4f3345b6","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_yingworkhub;SharedAccessKey=****;EntityPath=testevent","authenticationType":"keyBased","name":"test333","id":"7d19929b-0545-4f24-8321-0835e1f0d49b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT5H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT5H","maxDeliveryCount":19}},"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/adt-test/providers/Microsoft.Network/privateEndpoints/test"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ying/providers/Microsoft.Devices/IotHubs/yingworkhub/PrivateEndpointConnections/yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","name":"yingworkhub.fd9ad8f7-c538-4c92-9ae7-cb2e40c15981","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-02-03T01:11:50.883Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliestesthub","name":"iliestesthub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{"mytag":"myvalue"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGcaz2A=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"iliestesthub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iliestesthub","endpoint":"sb://iothub-ns-iliestesth-10067252-c029533c08.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;AccountName=andbuctestadu;AccountKey=****","containerName":"test","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","name":"storageendpoint","id":"f82ebb49-8708-4d8f-9050-224ff362f456","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ADU"},{"containerName":"deviceupdates","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://raharrideviceupdates.blob.core.windows.net/","authenticationType":"identityBased","name":"fsdfsdfs","id":"306e31c4-8b69-4673-b1a5-e6468e0ebbab","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"raharri"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"505bd383-2da9-4337-8cb5-aa1cb5bdf02e"},"systemData":{"createdAt":"2021-04-19T20:43:16.37Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/BillableModulesTestHub","name":"BillableModulesTestHub","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6FwK4=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"BillableModulesTestHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"billablemodulestesthub","endpoint":"sb://iothub-ns-billablemo-16397238-86d909a7ce.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-15T01:34:40.3366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003","name":"iot000003","type":"Microsoft.Devices/IotHubs","location":"westus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGeau0Q=","properties":{"locations":[{"location":"West - US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot000003.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot000003","endpoint":"sb://iothub-ns-iotdmv6gfk-18891520-d7b1824679.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-05-03T17:38:03.7966667Z"}},{"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":"AAAADFv9nug=","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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADFv97l0=","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":{"type":"None"},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg","name":"pamontg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADGUso9M=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"test","action":"Accept","ipMask":"192.1.1.1"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"test","action":"Allow","ipMask":"192.1.1.1"}]},"hostName":"pamontg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg","endpoint":"sb://iothub-ns-pamontg-4056358-6621eea138.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://pamontg-eh.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_pamontg;SharedAccessKey=****;EntityPath=captured","name":"pamontg-eh","id":"50d18bf3-3b04-4b57-b910-315157e6bd44","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"store1","id":"e970e1b8-93f0-4b67-8196-25ff6533b44c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"},{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=pamontg;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.json","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"json","authenticationType":"keyBased","name":"store2","id":"5c98782c-15b1-4f24-a086-2e6b4eee191c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"pamontg"}]},"enrichments":[],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;AccountName=pamontgtsi;AccountKey=****","containerName":"hubcontainer"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"7d0f402c-d032-4a55-a6be-763d4252af10"},"systemData":{"createdAt":"2020-08-12T17:49:08.82Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADF5AJEc=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"73.97.132.150","action":"Accept","ipMask":"73.97.132.150"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-int-test-hub","name":"rk-cli-int-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGTYLuw=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-int-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-int-test-hub","endpoint":"sb://iothub-ns-rk-cli-int-6335385-8cf2a6e686.servicebus.windows.net/"}},"routing":{"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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"23c984de-d8ee-45f9-83ea-c0930a6a5665"},"systemData":{"createdAt":"2020-12-03T18:15:27.6Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pamontg/providers/Microsoft.Devices/IotHubs/pamontg2","name":"pamontg2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"pamontg","etag":"AAAADFwGQoA=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"pamontg2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"pamontg2","endpoint":"sb://iothub-ns-pamontg2-13844841-cb639165c1.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-07-27T23:04:46.1766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/smoke-test-2","name":"smoke-test-2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXl3wE=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"smoke-test-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"smoke-test-2","endpoint":"sb://iothub-ns-smoke-test-16240457-a5759ac96a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-11-30T21:07:45.04Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADGchvk4=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType - = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType - = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/deleteme4","name":"deleteme4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGXBpsg=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"deleteme4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"deleteme4","endpoint":"sb://iothub-ns-deleteme4-18107980-f759f5ba0d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-18T20:29:38.2566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","name":"test-hub-b754f4e55fec48a7ba9ab917b76f0f6a","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGboTok=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-18T17:40:18.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdRvik=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-757cddec85f8484bad237323ee4552e4","name":"test-dps-hub-757cddec85f8484bad237323ee4552e4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-318f81a1ad2b4058831d394f4cfb1f68"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGdk8X8=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T09:00:38.1166667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/test-hub-c10aed4859874d1f8f5e539df9fa9510","name":"test-hub-c10aed4859874d1f8f5e539df9fa9510","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADGdqOzo=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-c10aed4859874d1f8f5e539df9fa9510.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-c10aed4859874d1f","endpoint":"sb://iothub-ns-test-hub-c-18839450-98dd20cc30.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-28T21:06:07.2833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","name":"test-dps-hub-943f30a9c7e644fba3b24295cbf59e2c","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"dpsname":"test-dps-36ca1f9401c74457a99a9a06df42d114"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADGd50/g=","properties":{"locations":[{"location":"West - US 2","role":"primary"},{"location":"West Central US","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None"},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-30T08:36:44.1333333Z"}}]}' + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-09-28T20:31:20.88Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubBasic","name":"rkesslerHubBasic","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHPPGA0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"rkesslerHubBasic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubbasic","endpoint":"sb://iothub-ns-rkesslerhu-5856834-888c890346.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","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":"GWV2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"B1","tier":"Basic","capacity":3},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T05:43:03.923Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/avagraw-iot-hub","name":"avagraw-iot-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADF6bLe8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"avagraw-iot-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"avagraw-iot-hub","endpoint":"sb://iothub-ns-avagraw-io-9684408-600ce25791.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-04-07T23:02:07.663Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/avagraw_test/providers/Microsoft.Devices/IotHubs/iot-cli-extensions-integration-test-hub","name":"iot-cli-extensions-integration-test-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"avagraw_test","etag":"AAAADHHn7O4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-cli-extensions-integration-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-cli-extensions-integr","endpoint":"sb://iothub-ns-iot-cli-ex-9730108-95336c2aa2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=azcliintteststorage;AccountKey=****","containerName":"devices","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/avagraw_test/providers/Microsoft.ManagedIdentity/userAssignedIdentities/e62c3bf7fa25431f9f05644701d2b095":{"clientId":"0e00a44c-3c88-4956-afc0-3655604c0ae8","principalId":"738f4453-4fbd-4a8b-a96a-054eb6ab6998"}},"principalId":"54d12017-0334-4044-b42c-b7e9fe1bcdd4"},"systemData":{"createdAt":"2021-04-09T08:58:12.597Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-test-1","name":"raharri-test-1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADHDsQF8=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"raharri-test-1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-test-1","endpoint":"sb://iothub-ns-raharri-te-11679783-47062fe1c2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","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","privateEndpointConnections":[],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-06-03T21:17:21.517Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/fileupload-icm","name":"fileupload-icm","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHNdIiw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[{"filterName":"10.0.0.28","action":"Accept","ipMask":"10.0.0.28"}],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"10.0.0.28","action":"Allow","ipMask":"10.0.0.28"}]},"hostName":"fileupload-icm.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"fileupload-icm","endpoint":"sb://iothub-ns-fileupload-14312231-bc8f29349b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"queue-1","authenticationType":"identityBased","name":"servicebus-systemassigned","id":"3440cbf7-f2ff-40aa-8f97-0b68d6c1c223","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"serviceBusTopics":[{"endpointUri":"sb://rk-sb-namespace.servicebus.windows.net","entityPath":"topic-1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"name":"topic-userassgined","id":"5213a80d-ecaf-4fd2-911f-89da00a0792b","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"eventHubs":[{"endpointUri":"sb://yingevent.servicebus.windows.net","entityPath":"testevent","authenticationType":"identityBased","name":"test13","id":"3ac306b4-bb1f-4349-a62c-b95f3b46e91c","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"},{"connectionString":"Endpoint=sb://yingevent.servicebus.windows.net:5671/;SharedAccessKeyName=iothubroutes_fileupload-icm;SharedAccessKey=****;EntityPath=yingtest","authenticationType":"keyBased","name":"sdk938701","id":"aaba73f7-2b07-4160-a8ba-e5be5d0f1d2e","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"ying"}],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rkstoragetest;AccountKey=****","containerName":"blob","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":119,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"storage1","id":"328d9e4a-1f04-449f-a9cf-75df0259f9b3","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"rk-iot-rg"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"111111","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"222222","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"3453533","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"asdfasfdasfd","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"75756756","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"5676576576","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"vjfdjhgjgjg","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"dsdfsgsfdggggf","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"erytryry56","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"eventroute","source":"DeviceMessages","condition":"true","endpointNames":["test13"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"true","endpointNames":["sdk938701"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"DeviceLifecycleEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=rktsistorage;AccountKey=****","containerName":"env-bbb3a5bc-ce9f-4b9a-a9cf-48918b03cdca","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":12}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test-2":{"clientId":"7ee8a73e-24bd-4681-963b-708239d7c5d9","principalId":"76ee23e0-7ab2-4ec6-99fa-1c9e9fb308a6"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}},"principalId":"9f8a3338-fcf5-48b1-8f1b-31ba009cd8b9"},"systemData":{"createdAt":"2021-08-19T15:38:33.3466667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/newiothubDeletewithLock","name":"newiothubDeletewithLock","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"device":"tag"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPAy2g=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"172.56.65.190","action":"Allow","ipMask":"172.56.65.190"}]},"hostName":"newiothubDeletewithLock.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"newiothubdeletewithlock","endpoint":"sb://iothub-ns-newiothubd-16851029-a939ca66f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"thana-route","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":"","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":10},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/eventualC/providers/Microsoft.ManagedIdentity/userAssignedIdentities/drEventualCIdentity":{"clientId":"0b4fcef6-7be3-4265-b4a5-f348cd6cbbdd","principalId":"7b457ed0-2509-43f4-83d9-6d0b1f57732e"}}},"systemData":{"createdAt":"2022-01-13T19:43:55.73Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHub","name":"JingHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHO85PM=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"testds","action":"Allow","ipMask":"1.1.1.1"}]},"hostName":"JingHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghub","endpoint":"sb://iothub-ns-jinghub-18297925-00079d4986.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://jingcosmosdbtest.documents.azure.com","databaseName":"ToDoList","collectionName":"Items","authenticationType":"identityBased","partitionKeyName":"jinghfdasfdsa","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"jingtestendpointcosmos","id":"e6765d9b-0d2c-4fbf-b0a3-04cb1c092880","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jingrg"},{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test","collectionName":"test1","authenticationType":"keyBased","partitionKeyName":"dafdsfas","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"traete","id":"fbdd212a-2293-40b1-8b0e-0ec0f5830468","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"},{"endpointUri":"https://jeremyjones-cosmosdb.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"test-database-1","collectionName":"test-container-1","authenticationType":"keyBased","partitionKeyName":"dsfasfds","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"fadsfreew","id":"06e21266-a7d0-445f-8aac-26c7f9af98ba","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jeremyjones-rg"},{"endpointUri":"https://vilit-cosmos-test.documents.azure.com","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","authenticationType":"keyBased","partitionKeyName":"dsfadsfsafs","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"dsfasfdsfsad","id":"b9067f47-fc00-41c0-ba9f-9dd58cf087fd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"17545cbe-de7c-4a2e-8adf-f62af700053f"},"systemData":{"createdAt":"2022-03-29T21:24:51.3966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit-eh-to-azmon/providers/Microsoft.Devices/IotHubs/vilit-hub-to-be-logged","name":"vilit-hub-to-be-logged","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit-eh-to-azmon","etag":"AAAADGcY8Vk=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-to-be-logged.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":7,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-to-be-logged","endpoint":"sb://iothub-ns-vilit-hub-18322115-c3f0235d39.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-31T17:23:21.6266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test","name":"vilit-hub-test","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHGoyoE=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test","endpoint":"sb://iothub-ns-vilit-hub-19384587-a251dff2c4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"0e9b5754-22ce-407f-92f8-f30efc637af5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"52d537a7-6712-4f01-b53d-24b255e95208","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[{"endpointUri":"https://vilit-cosmos-test.documents.azure.com:443/","primaryKey":"mock_key","secondaryKey":"mock_key","databaseName":"ToDoList","collectionName":"Items","name":"endpoint3","id":"2066da47-86b4-44ef-bedc-8e451d29f7de","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"e6420fd8-f764-49fa-827d-f67c48d09181"},"systemData":{"createdAt":"2022-05-26T19:15:23.53Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub","name":"thana-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADHF7rrY=","properties":{"locations":[{"location":"West + US","role":"primary"},{"location":"East US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub","endpoint":"sb://iothub-ns-thana-hub-20392623-bb128f0828.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:08:06.58Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2","name":"thana-hub2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADGzYMNg=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"66.199.8.133","action":"Allow","ipMask":"66.199.8.133"},{"filterName":"custom","action":"Allow","ipMask":"66.199.8.133"}]},"hostName":"thana-hub2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub2","endpoint":"sb://iothub-ns-thana-hub2-20392826-b9828b154a.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"thana-route","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","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub2/PrivateEndpointConnections/thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","name":"thana-hub2.09a5e150-3ac1-4d3e-9326-e2619d8ca996","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"S2","tier":"Standard","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-07-21T15:17:08.9333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/testhub2342","name":"testhub2342","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADG/B2lA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testhub2342.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testhub2342","endpoint":"sb://iothub-ns-testhub234-20645103-b7a736721d.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false,"rootCertificate":{}},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-01T20:53:53.72Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub3","name":"thana-hub3","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG7mD8M=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub3","endpoint":"sb://iothub-ns-thana-hub3-20991068-17c1d995f2.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T20:27:51.6533333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4","name":"thana-hub4","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"thana-rg","etag":"AAAADG74Fn4=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"thana-hub4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"thana-hub4","endpoint":"sb://iothub-ns-thana-hub4-21011507-707f220dba.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Network/privateEndpoints/thana-pe"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/thana-rg/providers/Microsoft.Devices/IotHubs/thana-hub4/PrivateEndpointConnections/thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","name":"thana-hub4.1fa8ae41-b129-48d1-9d94-c85993f9b7dd","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Disabled","disableLocalAuth":true,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-17T17:27:23.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/cosmos-bug-bash","name":"cosmos-bug-bash","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHO85QY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cosmos-bug-bash.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cosmos-bug-bash","endpoint":"sb://iothub-ns-cosmos-bug-21306209-6f8a3dc0cd.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=mirabaistorage;AccountKey=****","containerName":"container1","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","authenticationType":"keyBased","name":"xcvcxvxcvc","id":"c8498dea-8f9a-4269-962b-9af6832edd23","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"mirabai"}],"cosmosDBSqlCollections":[{"endpointUri":"https://askhura-cosmos-db.documents.azure.com","databaseName":"test","collectionName":"test1","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/microsoft.managedidentity/userassignedidentities/rk-identity-test"},"partitionKeyName":"askhuraKey","partitionKeyTemplate":"{deviceid}-{YYYY}-{MM}","name":"cosmos-db-endpoint1","id":"fd32e7d2-f9d4-46a1-a5a7-92675e3d35a1","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"askhura-test-rg"}]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rk-iot-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/rk-identity-test":{"clientId":"9ac12ce2-8398-4c52-94f2-7407c6e73c1c","principalId":"cf0d4fef-1347-4443-a37c-62f8ae417f9e"}},"principalId":"12af8ced-d890-440c-9025-c95519cf65f0"},"systemData":{"createdAt":"2022-09-02T17:24:45.0733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesIotHub1","name":"jeremyjonesIotHub1","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHNuGK8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesIotHub1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":2,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesiothub1","endpoint":"sb://iothub-ns-jeremyjone-21469779-0230f7d7e4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"enrichments":[{"key":"test","value":"testval","endpointNames":["events"]}],"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-09T14:34:51.98Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/iliesfreehub","name":"iliesfreehub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADHPAy/8=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iliesfreehub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":2,"partitionIds":["0","1"],"path":"iothub-ehub-iliesfreeh-21611751-c4a9b771f2","endpoint":"sb://ihsuprodblres096dednamespace.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"9f3073c2-d040-4192-90b3-a223c0397ea5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"F1","tier":"Free","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}}},"systemData":{"createdAt":"2022-09-15T18:34:33.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesHub4Adu","name":"jeremyjonesHub4Adu","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHFqrVY=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesHub4Adu.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjoneshub4adu","endpoint":"sb://iothub-ns-jeremyjone-21697629-9819b16057.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-19T19:08:09.86Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerADUTest","name":"rkesslerADUTest","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGtGFQ=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rkesslerADUTest.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkessleradutest","endpoint":"sb://iothub-ns-rkesslerad-21770530-944b1fadd5.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-23T03:52:29.7766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-100","name":"vilit-hub-test-100","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHND6ow=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"Boogawooga","action":"Allow","ipMask":"172.92.188.193"},{"filterName":"TrustedIP","action":"Allow","ipMask":"192.168.0.1"}]},"hostName":"vilit-hub-test-100.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-100","endpoint":"sb://iothub-ns-vilit-hub-21781349-534aae8b09.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[{"endpointUri":"sb://vilitservicebus.servicebus.windows.net","entityPath":"queuetest","authenticationType":"identityBased","name":"endpoint3","id":"c98ec7af-b517-445d-9d65-16a91b703dcd","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"d5a87717-0396-4017-91b1-619b300d1132","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"},{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint2","id":"f501694b-c65c-48f5-abbc-19434b4573db","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[{"containerName":"vilithubtest100","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://vilitstore.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/microsoft.managedidentity/userassignedidentities/vilit-identity"},"name":"endpoint4","id":"517bcf4e-2e66-47b4-9d25-64d0486c0d6f","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents1","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true},{"name":"route5","source":"TwinChangeEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"devicejoblifecycleevents1","source":"DeviceJobLifecycleEvents","condition":"false","endpointNames":["events"],"isEnabled":true},{"name":"twinchangeevents2","source":"TwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"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":[],"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"7de320d8-790b-4eb7-b600-1f2285c0b652"},"systemData":{"createdAt":"2022-09-23T15:51:13.4333333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/IoTHubTagSample","name":"IoTHubTagSample","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHI0uG0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"IoTHubTagSample.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iothubtagsample","endpoint":"sb://iothub-ns-iothubtags-21914682-ff8e9cecbe.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-09-29T22:57:14.3866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-hub","name":"askhura-basic-hub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHMaPW0=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[]},"hostName":"askhura-basic-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-hub","endpoint":"sb://iothub-ns-askhura-ba-21997641-a0d81bec27.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","publicNetworkAccess":"Enabled","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-03T17:44:46.7566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jingrg/providers/Microsoft.Devices/IotHubs/JingHubIdentity","name":"JingHubIdentity","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jingrg","etag":"AAAADHPAzAc=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"JingHubIdentity.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jinghubidentity","endpoint":"sb://iothub-ns-jinghubide-22045548-6ed0012d8e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[{"containerName":"jiacjucontainer","fileNameFormat":"{iothub}/{partition}/{YYYY}/{MM}/{DD}/{HH}/{mm}.avro","batchFrequencyInSeconds":100,"maxChunkSizeInBytes":104857600,"encoding":"avro","endpointUri":"https://jiacjutest.blob.core.windows.net/","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/microsoft.managedidentity/userassignedidentities/jing-useridentity"},"name":"jingendpointstorage","id":"846c76e2-0549-47fb-8d8a-229cb17c8924","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"jiacjutest"}],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/jingrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/jing-useridentity":{"clientId":"13f613d9-9e8f-4030-804d-23bbad1a5b1c","principalId":"52981ca6-d5e1-451d-b9ed-2474b2857d8b"}}},"systemData":{"createdAt":"2022-10-05T21:48:05.69Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jeremyjones-rg/providers/Microsoft.Devices/IotHubs/jeremyjonesBasicHub","name":"jeremyjonesBasicHub","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jeremyjones-rg","etag":"AAAADHK/BXI=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"jeremyjonesBasicHub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"jeremyjonesbasichub","endpoint":"sb://iothub-ns-jeremyjone-22059967-d51342c28e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-06T12:52:10.5133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-cosmos","name":"vilit-hub-cosmos","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNb/Fw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-cosmos.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-cosmos","endpoint":"sb://iothub-ns-vilit-hub-22224512-b7bf2cd620.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-13T21:33:29.0666667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","name":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHO7E6I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-674eb03dff924fd1a0f3c2e2f8be7ea5.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-674eb03dff924fd1","endpoint":"sb://iothub-ns-test-hub-6-22324877-f48051ed49.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://hubstore11c8.blob.core.windows.net/;FileEndpoint=https://hubstore11c8.file.core.windows.net/;QueueEndpoint=https://hubstore11c8.queue.core.windows.net/;TableEndpoint=https://hubstore11c8.table.core.windows.net/;AccountName=hubstore11c8;AccountKey=****","containerName":"devices"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T17:37:48.9566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiacjutest/providers/Microsoft.Devices/IotHubs/createtodelete","name":"createtodelete","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"jiacjutest","etag":"AAAADHPP024=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"createtodelete.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"createtodelete","endpoint":"sb://iothub-ns-createtode-22328648-4dba0f7040.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T22:01:08.4833333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/iotrjdbumkuynxp5haeh","name":"iotrjdbumkuynxp5haeh","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHPA4mw=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iotrjdbumkuynxp5haeh.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iotrjdbumkuynxp5haeh","endpoint":"sb://iothub-ns-iotrjdbumk-22330943-dd99ceaec4.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T00:37:56.7733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/askhura-test-rg/providers/Microsoft.Devices/IotHubs/askhura-basic-2","name":"askhura-basic-2","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"askhura-test-rg","etag":"AAAADHPERoA=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"askhura-basic-2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"askhura-basic-2","endpoint":"sb://iothub-ns-askhura-ba-22334373-6a56010bab.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T04:40:42.1433333Z"}},{"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":"AAAADFv9nug=","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":[],"cosmosDBSqlCollections":[]},"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},"identity":{"type":"None"},"systemData":{"createdAt":"2019-10-15T01:05:39.05Z"}},{"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":"AAAADHPA0a8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Allow","applyToBuiltInEventHubEndpoint":false,"ipRules":[{"filterName":"216.9.31.170","action":"Allow","ipMask":"216.9.31.170"}]},"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":[{"endpointUri":"sb://PaymaunServiceBusNamespace.servicebus.windows.net","entityPath":"paymaunservicebus","authenticationType":"identityBased","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1"},"name":"myservicebusendpoint","id":"66870f63-10b4-49bd-b183-4f9cfc0ba1c5","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"TestCLI"}],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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/TestCLI/providers/Microsoft.Network/privateEndpoints/test_iothub_privateendpoint"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/ProHub/PrivateEndpointConnections/ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","name":"ProHub.f15cda4b-38f2-4f1c-8373-9f36c4379595","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"publicNetworkAccess":"Enabled","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/TestCLI/providers/Microsoft.ManagedIdentity/userAssignedIdentities/payidentity1":{"clientId":"5022edc5-a761-418f-9f4e-b9a519067931","principalId":"a7b418d2-9e95-46fc-ad76-30984a573b8d"}}},"systemData":{"createdAt":"2020-01-15T01:41:14.637Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rkesslerTest/providers/Microsoft.Devices/IotHubs/rkesslerHubWestUS2","name":"rkesslerHubWestUS2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rkesslerTest","etag":"AAAADHGoKS0=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"networkRuleSets":{"defaultAction":"Deny","applyToBuiltInEventHubEndpoint":true,"ipRules":[{"filterName":"73.97.132.150","action":"Allow","ipMask":"73.97.132.150"}]},"hostName":"rkesslerHubWestUS2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rkesslerhubwestus2","endpoint":"sb://iothub-ns-rkesslerhu-5873664-22a9e08b63.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"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":[],"publicNetworkAccess":"Disabled","disableLocalAuth":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2020-11-11T22:44:00.1Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-cli-test-hub","name":"rk-cli-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHBs8fU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-cli-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-cli-test-hub","endpoint":"sb://iothub-ns-rk-cli-tes-17680483-b104918893.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-01T19:55:07.66Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunHubTest1","name":"PaymaunHubTest1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADHIzQB8=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunHubTest1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaunhubtest1","endpoint":"sb://iothub-ns-paymaunhub-18818448-b5a0060e31.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'')","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT2H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-04-27T02:04:42.49Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-nested-edge-test-hub","name":"rk-nested-edge-test-hub","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADG9qtCo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-nested-edge-test-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-nested-edge-test-hub","endpoint":"sb://iothub-ns-rk-nested-19939868-a63ba75201.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","allowedFqdnList":[],"rootCertificate":{}},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-06-23T23:03:58.36Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestCLI/providers/Microsoft.Devices/IotHubs/PaymaunDelete1","name":"PaymaunDelete1","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"TestCLI","etag":"AAAADG/r3pU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"PaymaunDelete1.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"paymaundelete1","endpoint":"sb://iothub-ns-paymaundel-20992168-ee9b358e98.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"GWV2","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-08-16T21:36:07.27Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr/providers/Microsoft.Devices/IotHubs/cli-file-upload-hub3ef5t76opg6ot","name":"cli-file-upload-hub3ef5t76opg6ot","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgtylnvh23ucoj4ziptlerppczyytya3jfftnwsxksdboagwwqluvjcb5xow6xrclhr","etag":"AAAADHNuwdo=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hub3ef5t76opg6ot.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hub3ef5t7","endpoint":"sb://iothub-ns-cli-file-u-22244235-00b7993b77.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:04:49.1866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.Devices/IotHubs/identitytesthubuewuaqtemi3thtrq3","name":"identitytesthubuewuaqtemi3thtrq3","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m","etag":"AAAADHNvHpU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubuewuaqtemi3thtrq3.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubuewuaqtemi","endpoint":"sb://iothub-ns-identityte-22244583-2523980554.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestx5vvad2p4lj422dtt.blob.core.windows.net/;FileEndpoint=https://clitestx5vvad2p4lj422dtt.file.core.windows.net/;QueueEndpoint=https://clitestx5vvad2p4lj422dtt.queue.core.windows.net/;TableEndpoint=https://clitestx5vvad2p4lj422dtt.table.core.windows.net/;AccountName=clitestx5vvad2p4lj422dtt;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgkmd3ejjwsnpp76uwamcz7puugmswtzx74lgwgfhbo4f4i3qk4gxa5fqsgbm2s3c3m/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity7hlbtlndlwt7mxk":{"clientId":"2262c081-8067-4036-8c11-1f8437e2b668","principalId":"1e40defc-79ed-474f-a2af-4987cf25ece3"}},"principalId":"4d75ef2e-a797-44e4-b804-8606a51be8e6"},"systemData":{"createdAt":"2022-10-14T20:31:45.4Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11bncqz4me6z7ny","name":"iot-hub-for-test-11bncqz4me6z7ny","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg2h6rvpligucuywnlvtwyno3taqty52zxyj3trcmj2iaaufagkhyqjvhvccbdilqg4","etag":"AAAADHNvIVU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11bncqz4me6z7ny.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11bncqz4","endpoint":"sb://iothub-ns-iot-hub-fo-22244594-5b5f531cb9.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestmmxqd6sx3bmeg75oa.blob.core.windows.net/;FileEndpoint=https://clitestmmxqd6sx3bmeg75oa.file.core.windows.net/;QueueEndpoint=https://clitestmmxqd6sx3bmeg75oa.queue.core.windows.net/;TableEndpoint=https://clitestmmxqd6sx3bmeg75oa.table.core.windows.net/;AccountName=clitestmmxqd6sx3bmeg75oa;AccountKey=****","containerName":"iothubcontainer1hetnwaxz"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":true,"disableDeviceSAS":true,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T20:32:52.6933333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubfs7gyujnt3gdj","name":"cli-file-upload-hubfs7gyujnt3gdj","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgfujx7w5j5rgmuiodaw4emygnxlt7zmwxhxz23zjffzyyxrk3csj3r7owi63xrglqy","etag":"AAAADHNvimE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubfs7gyujnt3gdj.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubfs7gyu","endpoint":"sb://iothub-ns-cli-file-u-22244991-59ba732970.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestxr6xomz7iii3qglyv.blob.core.windows.net/;FileEndpoint=https://clitestxr6xomz7iii3qglyv.file.core.windows.net/;QueueEndpoint=https://clitestxr6xomz7iii3qglyv.queue.core.windows.net/;TableEndpoint=https://clitestxr6xomz7iii3qglyv.table.core.windows.net/;AccountName=clitestxr6xomz7iii3qglyv;AccountKey=****","containerName":"iothubcontainer1jw2ntton","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned","principalId":"fede918f-9cee-483b-88f3-e77e7ad9f6d1"},"systemData":{"createdAt":"2022-10-14T20:59:24.0266667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.Devices/IotHubs/cli-file-upload-hubxmiwpoob3ska2","name":"cli-file-upload-hubxmiwpoob3ska2","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox","etag":"AAAADHO79NU=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"cli-file-upload-hubxmiwpoob3ska2.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"cli-file-upload-hubxmiwpo","endpoint":"sb://iothub-ns-cli-file-u-22325638-f70995ac90.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestigva6doxivhvo5mqm.blob.core.windows.net/;FileEndpoint=https://clitestigva6doxivhvo5mqm.file.core.windows.net/;QueueEndpoint=https://clitestigva6doxivhvo5mqm.queue.core.windows.net/;TableEndpoint=https://clitestigva6doxivhvo5mqm.table.core.windows.net/;AccountName=clitestigva6doxivhvo5mqm;AccountKey=****","containerName":"iothubcontainer1afugpesv","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT13H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgz6waeqt5i5n2zy5qiou7ps2k5z64s5v73iwe3nfkh4gqqgxop3322htqpghv5l5ox/providers/Microsoft.ManagedIdentity/userAssignedIdentities/hub-user-identityryscyl523kpsuxd":{"clientId":"086e11bb-0694-42f6-8474-dbd5a74b6db5","principalId":"d413d0e1-ac08-4529-8847-0caa78d29ea9"}},"principalId":"73d53a99-58e1-4c01-90fb-965b7d51479a"},"systemData":{"createdAt":"2022-10-18T18:30:35.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij","name":"identitytesthubudgpmt6fdbsu2e7ij","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx","etag":"AAAADHO76mQ=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubudgpmt6fdbsu2e7ij.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubudgpmt6fdb","endpoint":"sb://iothub-ns-identityte-22325639-6e84b09c4b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestzzaeirfu6bbwfj4ja.blob.core.windows.net/;FileEndpoint=https://clitestzzaeirfu6bbwfj4ja.file.core.windows.net/;QueueEndpoint=https://clitestzzaeirfu6bbwfj4ja.queue.core.windows.net/;TableEndpoint=https://clitestzzaeirfu6bbwfj4ja.table.core.windows.net/;AccountName=clitestzzaeirfu6bbwfj4ja;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","privateEndpointConnections":[{"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Network/privateEndpoints/iot-private-endpoint"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.Devices/IotHubs/identitytesthubudgpmt6fdbsu2e7ij/PrivateEndpointConnections/identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","name":"identitytesthubudgpmt6fdbsu2e7ij.391e1b8e-037d-47db-aa9b-e06dcb482f76","type":"Microsoft.Devices/IotHubs/PrivateEndpointConnections"}],"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgbvlmbll3eq54qnykpn7g4paxq76oo63cehafi5nigee25pkrbsjobaizeycrsegjx/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identityj323cmhsrys5hgs":{"clientId":"754b3070-a5ce-4348-ae67-f3b77850f73f","principalId":"eac10931-f1e4-4b58-97a9-c9ee953f73df"}},"principalId":"5a0c2be5-0b55-4d0c-9751-512902c882e8"},"systemData":{"createdAt":"2022-10-18T18:30:42.3766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.Devices/IotHubs/identitytesthubkrnp2c66ndvvbj4mg","name":"identitytesthubkrnp2c66ndvvbj4mg","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2","etag":"AAAADHO8Dn4=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"identitytesthubkrnp2c66ndvvbj4mg.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"identitytesthubkrnp2c66nd","endpoint":"sb://iothub-ns-identityte-22325901-28e9e10038.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitesteklqzuyizgeeenn75.blob.core.windows.net/;FileEndpoint=https://clitesteklqzuyizgeeenn75.file.core.windows.net/;QueueEndpoint=https://clitesteklqzuyizgeeenn75.queue.core.windows.net/;TableEndpoint=https://clitesteklqzuyizgeeenn75.table.core.windows.net/;AccountName=clitesteklqzuyizgeeenn75;AccountKey=****","containerName":"iothubcontainer","authenticationType":"identityBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","minTlsVersion":"1.2","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgioo46n6cyaducurmhyhlljohvgdc2tfhtekfkkpi6hxkghhmcj2ybqqmtfam6csx2/providers/Microsoft.ManagedIdentity/userAssignedIdentities/iot-user-identity6t5fwauejguwyxc":{"clientId":"47721a7b-d93f-41e0-b7e7-8350933ec275","principalId":"bd5b43d4-e4fa-480e-97ce-8597e9ebaf0f"}},"principalId":"19c0c702-cf96-4be0-90c3-a5693e915651"},"systemData":{"createdAt":"2022-10-18T18:48:38.55Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh/providers/Microsoft.Devices/IotHubs/iot-hub-for-test-11r64raxzy2z6ws","name":"iot-hub-for-test-11r64raxzy2z6ws","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"e":"f","g":"h"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rgmk4qoadhfeuzk4uoyx3solzel7o4fjsrdesdmj4lxhx42ngc4ggbtoco5dg4xzxoh","etag":"AAAADHO8Eqs=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"iot-hub-for-test-11r64raxzy2z6ws.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":4,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"iot-hub-for-test-11r64rax","endpoint":"sb://iothub-ns-iot-hub-fo-22325919-ca50c2b01f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT3H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://clitestwbufuo762kwfy7o53.blob.core.windows.net/;FileEndpoint=https://clitestwbufuo762kwfy7o53.file.core.windows.net/;QueueEndpoint=https://clitestwbufuo762kwfy7o53.queue.core.windows.net/;TableEndpoint=https://clitestwbufuo762kwfy7o53.table.core.windows.net/;AccountName=clitestwbufuo762kwfy7o53;AccountKey=****","containerName":"iothubcontainer1ehgb3ukr"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT15S","ttlAsIso8601":"P1DT8H","maxDeliveryCount":80}},"enableFileUploadNotifications":true,"cloudToDevice":{"maxDeliveryCount":46,"defaultTtlAsIso8601":"P1DT10H","feedback":{"lockDurationAsIso8601":"PT10S","ttlAsIso8601":"P1DT19H","maxDeliveryCount":76}},"features":"None","minTlsVersion":"1.2","disableLocalAuth":false,"disableDeviceSAS":false,"disableModuleSAS":false,"allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-18T18:49:46.5966667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-21975ebe648440","name":"test-hub-21975ebe648440","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+2JE=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-21975ebe648440.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-21975ebe648440","endpoint":"sb://iothub-ns-test-hub-2-22328816-0e2bfd9bcb.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"fec1ccb4-c956-4a6f-8787-e984e35804d3"},"systemData":{"createdAt":"2022-10-18T22:11:10.1133333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-9ec3a47fc41840","name":"test-hub-9ec3a47fc41840","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+34w=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-9ec3a47fc41840.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-9ec3a47fc41840","endpoint":"sb://iothub-ns-test-hub-9-22328847-38d35c5515.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep652299afa13d49.blob.core.windows.net/;FileEndpoint=https://testhubdep652299afa13d49.file.core.windows.net/;QueueEndpoint=https://testhubdep652299afa13d49.queue.core.windows.net/;TableEndpoint=https://testhubdep652299afa13d49.table.core.windows.net/;AccountName=testhubdep652299afa13d49;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep060c88dc58ca46":{"clientId":"8b845ebf-9bad-4ba5-9b1d-a14de61482ad","principalId":"263fb231-0db6-4e3e-b848-83418d7bda77"}},"principalId":"00567959-da49-4909-833a-8ee9b0673c0b"},"systemData":{"createdAt":"2022-10-18T22:13:49.9033333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-a541ba4feb6d45","name":"test-hub-a541ba4feb6d45","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO+5YY=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-a541ba4feb6d45.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-a541ba4feb6d45","endpoint":"sb://iothub-ns-test-hub-a-22328856-a90541562b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdep539eb40c15e043.blob.core.windows.net/;FileEndpoint=https://testhubdep539eb40c15e043.file.core.windows.net/;QueueEndpoint=https://testhubdep539eb40c15e043.queue.core.windows.net/;TableEndpoint=https://testhubdep539eb40c15e043.table.core.windows.net/;AccountName=testhubdep539eb40c15e043;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdep4b831b19eab745":{"clientId":"ad68c527-48e9-4d12-bf96-23e7ee6f5d72","principalId":"83700265-8f7e-4ddc-95fe-4b8dc38ce68d"}},"principalId":"e45d6c2f-8449-49cd-8374-a7fbfc5b3c30"},"systemData":{"createdAt":"2022-10-18T22:14:52.22Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-692e83548f9f4e","name":"test-hub-692e83548f9f4e","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/q1o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-692e83548f9f4e.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-692e83548f9f4e","endpoint":"sb://iothub-ns-test-hub-6-22329691-74cc592bc3.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"d00725bc-5a03-45a8-a20c-09a8c4ee9962"},"systemData":{"createdAt":"2022-10-18T23:11:50.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-8f3072ccb00443","name":"test-hub-8f3072ccb00443","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"abc":"def"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHO/s+o=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-8f3072ccb00443.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-8f3072ccb00443","endpoint":"sb://iothub-ns-test-hub-8-22329717-6c2e8b2642.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://testhubdepdb8f8c4fb78243.blob.core.windows.net/;FileEndpoint=https://testhubdepdb8f8c4fb78243.file.core.windows.net/;QueueEndpoint=https://testhubdepdb8f8c4fb78243.queue.core.windows.net/;TableEndpoint=https://testhubdepdb8f8c4fb78243.table.core.windows.net/;AccountName=testhubdepdb8f8c4fb78243;AccountKey=****","containerName":"fileupload"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-int-test-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testhubdepdbe36f02f6fc44":{"clientId":"e3ccc5b9-d939-4a15-9c4b-dba9e4df7013","principalId":"57390063-f6bf-4c5c-b91e-35a316e3462e"}},"principalId":"846af09c-9a6c-4ecc-bc74-2f2b302d21d4"},"systemData":{"createdAt":"2022-10-18T23:14:00.6566667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-1e7bee8526cf496f9a64c57f34822ce4","name":"test-hub-1e7bee8526cf496f9a64c57f34822ce4","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python39 06446c32-6f24-573c-0426-5702c48efd75","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1","test_twin_properties_update":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUQ4k=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-1e7bee8526cf496f9a64c57f34822ce4.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-1e7bee8526cf496f","endpoint":"sb://iothub-ns-test-hub-1-22351093-2f3a821b54.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:21:01.6733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-int-test-rg/providers/Microsoft.Devices/IotHubs/test-hub-fb08f18a3649465b8eb0e4afe2ebffac","name":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac","type":"Microsoft.Devices/IotHubs","location":"westus2","tags":{"test_device_messaging":"1","pipeline_id":"39 + Test IoT Hub - config, core and jobs Python310 b965e18a-779e-5a51-69f7-83f4f4e9bf18","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"1","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"cli-int-test-rg","etag":"AAAADHPUQsc=","properties":{"locations":[{"location":"West + US 2","role":"primary"},{"location":"West Central US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"test-hub-fb08f18a3649465b8eb0e4afe2ebffac.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"test-hub-fb08f18a3649465b","endpoint":"sb://iothub-ns-test-hub-f-22351157-037e87a950.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-19T23:25:18.8733333Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/asfsfsfsfdsdfsdf","name":"asfsfsfsfdsdfsdf","type":"Microsoft.Devices/IotHubs","location":"southeastasia","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADF6xfwY=","properties":{"locations":[{"location":"Southeast + Asia","role":"primary"},{"location":"East Asia","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"asfsfsfsfdsdfsdf.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"asfsfsfsfdsdfsdf","endpoint":"sb://iothub-ns-asfsfsfsfd-16443893-76a9d6d183.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2021-12-17T23:26:47.5766667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/ilienorway","name":"ilienorway","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGwyrnU=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"ilienorway.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"ilienorway","endpoint":"sb://iothub-ns-ilienorway-17913320-fbfaad439f.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"DeviceUpdate.DeviceTwinChanges","source":"TwinChangeEvents","condition":"(opType + = ''updateTwin'' OR opType = ''replaceTwin'') AND IS_DEFINED($body.tags.ADUGroup)","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DigitalTwinChanges","source":"DigitalTwinChangeEvents","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceLifeCycle","source":"DeviceLifecycleEvents","condition":"opType + = ''deleteDeviceIdentity'' OR opType = ''deleteModuleIdentity''","endpointNames":["events"],"isEnabled":true},{"name":"DeviceUpdate.DeviceConnectionState","source":"DeviceConnectionStateEvents","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","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:21:10.18Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/iliesrg/providers/Microsoft.Devices/IotHubs/norwayhubworks","name":"norwayhubworks","type":"Microsoft.Devices/IotHubs","location":"norwaywest","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"iliesrg","etag":"AAAADGQKxaI=","properties":{"locations":[{"location":"Norway + West","role":"primary"},{"location":"Norway East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"norwayhubworks.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"norwayhubworks","endpoint":"sb://iothub-ns-norwayhubw-17914003-eb93cbe919.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-03-10T22:56:29.9366667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/raharri/providers/Microsoft.Devices/IotHubs/raharri-staging-test","name":"raharri-staging-test","type":"Microsoft.Devices/IotHubs","location":"brazilsouth","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"raharri","etag":"AAAADGF5LT4=","properties":{"locations":[{"location":"Brazil + South","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"raharri-staging-test.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"raharri-staging-test","endpoint":"sb://iothub-ns-raharri-st-17203994-46fca5195e.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-03T18:07:11.78Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vilit/providers/Microsoft.Devices/IotHubs/vilit-hub-test-basic","name":"vilit-hub-test-basic","type":"Microsoft.Devices/IotHubs","location":"canadacentral","tags":{"pipeline_id":"wackaroni + Namearoni jobberoni","test_device_messaging":"1","test_dps_device_registration_x509_lifecycle":"3","test_hub_monitor_events":"1","test_hub_monitor_feedback":"1","test_iothub_device_twin":"2","test_iothub_device_twin_replace":"2","test_mqtt_device_direct_method_with_custom_response_status_payload":"1","test_mqtt_device_simulation_key":"1","test_mqtt_device_simulation_with_init_reported_properties":"1","test_mqtt_device_simulation_x509":"3","test_twin_properties_update":"1","test_uamqp_device_messaging":"1"},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"vilit","etag":"AAAADHNv44A=","properties":{"locations":[{"location":"Canada + Central","role":"primary"},{"location":"Canada East","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"vilit-hub-test-basic.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"vilit-hub-test-basic","endpoint":"sb://iothub-ns-vilit-hub-22178108-f7f1f98064.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[{"connectionString":"Endpoint=sb://viliteventhub.servicebus.windows.net:5671/;SharedAccessKeyName=blah;SharedAccessKey=****;EntityPath=eventhub","name":"endpoint1","id":"174fdf97-4b17-46b7-9b85-2d6cd0f102ff","subscriptionId":"a386d5ea-ea90-441a-8263-d816368c84a1","resourceGroup":"vilit"}],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[{"name":"route3","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":false},{"name":"devicemessages1","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true},{"name":"route1","source":"DeviceMessages","condition":"$body.hello + = 4","endpointNames":["events"],"isEnabled":true},{"name":"route2","source":"DeviceMessages","condition":"$connectionDeviceId + = ''Device_temp_1'' AND processingPath = ''hot'' AND $body.hello = 4","endpointNames":["events"],"isEnabled":true}],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;BlobEndpoint=https://vilitstore.blob.core.windows.net/;FileEndpoint=https://vilitstore.file.core.windows.net/;QueueEndpoint=https://vilitstore.queue.core.windows.net/;TableEndpoint=https://vilitstore.table.core.windows.net/;AccountName=vilitstore;AccountKey=****","containerName":"vilit-hub-test-100","authenticationType":"keyBased"}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT1M","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","disableLocalAuth":false,"disableDeviceSAS":false,"allowedFqdnList":[],"enableDataResidency":false},"sku":{"name":"B1","tier":"Basic","capacity":2},"identity":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity":{"clientId":"539eb29f-667b-42d1-9866-061874e50cc8","principalId":"e79949a4-c545-4322-8716-e06d27d86578"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/vilit/providers/Microsoft.ManagedIdentity/userAssignedIdentities/vilit-identity2":{"clientId":"1e7ed52f-0395-4f9b-a696-58f09368657b","principalId":"7c71f944-1a6e-4eb9-b8a4-729832f41dec"}},"principalId":"413910d3-892d-4044-a633-0608e238a50b"},"systemData":{"createdAt":"2022-10-11T18:22:56.0866667Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rk-iot-rg/providers/Microsoft.Devices/IotHubs/rk-test-qatar-hub","name":"rk-test-qatar-hub","type":"Microsoft.Devices/IotHubs","location":"qatarcentral","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"rk-iot-rg","etag":"AAAADHNr9qQ=","properties":{"locations":[{"location":"Qatar + Central","role":"primary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"rk-test-qatar-hub.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"rk-test-qatar-hub","endpoint":"sb://iothub-ns-rk-test-qa-22241338-d658306744.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[],"enableDataResidency":true},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-14T16:40:46.0966667Z"}}]}' headers: cache-control: - no-cache content-length: - - '112349' + - '198677' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:58 GMT + - Wed, 19 Oct 2022 23:44:52 GMT expires: - '-1' pragma: @@ -5092,6 +5412,7 @@ interactions: - '' - '' - '' + - '' status: code: 200 message: OK @@ -5109,13 +5430,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P130=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuECU=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -5124,7 +5445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:59 GMT + - Wed, 19 Oct 2022 23:44:53 GMT expires: - '-1' pragma: @@ -5156,13 +5477,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub --allocation-weight --apply-allocation-policy User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P130=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuECU=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -5171,7 +5492,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:59 GMT + - Wed, 19 Oct 2022 23:44:54 GMT expires: - '-1' pragma: @@ -5203,13 +5524,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub --allocation-weight --apply-allocation-policy User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P130=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuECU=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -5218,7 +5539,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:46:59 GMT + - Wed, 19 Oct 2022 23:44:54 GMT expires: - '-1' pragma: @@ -5237,7 +5558,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "etag": "AAAAAA/P130=", "properties": + body: '{"location": "westus", "tags": {}, "etag": "AAAAABPuECU=", "properties": {"state": "Active", "provisioningState": "Succeeded", "iotHubs": [{"applyAllocationPolicy": true, "allocationWeight": 10, "connectionString": "HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****", "location": "westus"}], "allocationPolicy": "Hashed"}, "sku": {"name": "S1", @@ -5258,16 +5579,16 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub --allocation-weight --apply-allocation-policy User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P130=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[{"applyAllocationPolicy":true,"allocationWeight":10,"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuECU=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[{"applyAllocationPolicy":true,"allocationWeight":10,"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMjAxYjI4YmMtMDU2NS00MjE2LTkwNTMtOGY0MmNmMTY3YTY5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYzg5YzkyNzQtMTJjMi00NzE1LTllNjktYjRkNmMxOGMyODQ2O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo cache-control: - no-cache content-length: @@ -5275,7 +5596,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:47:02 GMT + - Wed, 19 Oct 2022 23:44:55 GMT expires: - '-1' pragma: @@ -5305,10 +5626,57 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub --allocation-weight --apply-allocation-policy User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYzg5YzkyNzQtMTJjMi00NzE1LTllNjktYjRkNmMxOGMyODQ2O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:44:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot dps linked-hub update + Connection: + - keep-alive + ParameterSetName: + - --dps-name -g --linked-hub --allocation-weight --apply-allocation-policy + User-Agent: + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMjAxYjI4YmMtMDU2NS00MjE2LTkwNTMtOGY0MmNmMTY3YTY5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYzg5YzkyNzQtMTJjMi00NzE1LTllNjktYjRkNmMxOGMyODQ2O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -5320,7 +5688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:47:32 GMT + - Wed, 19 Oct 2022 23:45:25 GMT expires: - '-1' pragma: @@ -5352,13 +5720,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub --allocation-weight --apply-allocation-policy User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P2L8=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"applyAllocationPolicy":true,"allocationWeight":10,"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuEFw=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"applyAllocationPolicy":true,"allocationWeight":10,"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -5367,7 +5735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:47:32 GMT + - Wed, 19 Oct 2022 23:45:25 GMT expires: - '-1' pragma: @@ -5399,13 +5767,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub --allocation-weight --apply-allocation-policy User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P2L8=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"applyAllocationPolicy":true,"allocationWeight":10,"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuEFw=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"applyAllocationPolicy":true,"allocationWeight":10,"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -5414,7 +5782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:47:32 GMT + - Wed, 19 Oct 2022 23:45:26 GMT expires: - '-1' pragma: @@ -5446,13 +5814,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P2L8=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"applyAllocationPolicy":true,"allocationWeight":10,"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuEFw=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"applyAllocationPolicy":true,"allocationWeight":10,"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -5461,7 +5829,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:47:33 GMT + - Wed, 19 Oct 2022 23:45:27 GMT expires: - '-1' pragma: @@ -5493,13 +5861,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P2L8=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"applyAllocationPolicy":true,"allocationWeight":10,"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuEFw=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"applyAllocationPolicy":true,"allocationWeight":10,"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -5508,7 +5876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:47:34 GMT + - Wed, 19 Oct 2022 23:45:27 GMT expires: - '-1' pragma: @@ -5540,13 +5908,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P2L8=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"applyAllocationPolicy":true,"allocationWeight":10,"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuEFw=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[{"applyAllocationPolicy":true,"allocationWeight":10,"name":"iot000003.azure-devices.net","connectionString":"HostName=iot000003.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=****","location":"westus"}],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -5555,7 +5923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:47:34 GMT + - Wed, 19 Oct 2022 23:45:27 GMT expires: - '-1' pragma: @@ -5574,7 +5942,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "etag": "AAAAAA/P2L8=", "properties": + body: '{"location": "westus", "tags": {}, "etag": "AAAAABPuEFw=", "properties": {"state": "Active", "provisioningState": "Succeeded", "iotHubs": [], "allocationPolicy": "Hashed"}, "sku": {"name": "S1", "capacity": 1}}' headers: @@ -5593,16 +5961,16 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P2L8=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuEFw=","name":"dps000002","location":"westus","properties":{"state":"Transitioning","provisioningState":"Accepted","iotHubs":[],"allocationPolicy":"Hashed","idScope":null},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMTZmOWJkYjQtY2E3Yi00OGFhLWEzYzgtZTgyNjA1OTA5NTdkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMDQ2OGZiZTUtZGRjNy00YjkxLWE3YjctZjA4OTJkNTQxOTg5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo cache-control: - no-cache content-length: @@ -5610,7 +5978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:47:36 GMT + - Wed, 19 Oct 2022 23:45:29 GMT expires: - '-1' pragma: @@ -5640,10 +6008,57 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMDQ2OGZiZTUtZGRjNy00YjkxLWE3YjctZjA4OTJkNTQxOTg5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:45:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot dps linked-hub delete + Connection: + - keep-alive + ParameterSetName: + - --dps-name -g --linked-hub + User-Agent: + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMTZmOWJkYjQtY2E3Yi00OGFhLWEzYzgtZTgyNjA1OTA5NTdkO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfMDQ2OGZiZTUtZGRjNy00YjkxLWE3YjctZjA4OTJkNTQxOTg5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -5655,7 +6070,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:48:07 GMT + - Wed, 19 Oct 2022 23:45:59 GMT expires: - '-1' pragma: @@ -5687,13 +6102,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P2VY=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuEkg=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -5702,7 +6117,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:48:07 GMT + - Wed, 19 Oct 2022 23:45:59 GMT expires: - '-1' pragma: @@ -5734,13 +6149,13 @@ interactions: ParameterSetName: - --dps-name -g --linked-hub User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: body: - string: '{"etag":"AAAAAA/P2VY=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne005CB741"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"etag":"AAAAABPuEkg=","name":"dps000002","location":"westus","properties":{"state":"Active","provisioningState":"Succeeded","iotHubs":[],"allocationPolicy":"Hashed","serviceOperationsHostName":"dps000002.azure-devices-provisioning.net","deviceProvisioningHostName":"global.azure-devices-provisioning.net","idScope":"0ne007F25A6"},"resourcegroup":"clitest.rg000001","type":"Microsoft.Devices/provisioningServices","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002","subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","tags":{},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: cache-control: - no-cache @@ -5749,7 +6164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:48:08 GMT + - Wed, 19 Oct 2022 23:46:00 GMT expires: - '-1' pragma: @@ -5783,8 +6198,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002?api-version=2021-10-15 response: @@ -5792,7 +6207,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfNzg4MTYzNWUtZGU4Yy00N2JhLTkyYmMtYjg0N2YzYzhjODJlO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYzI4NzY1MGQtMTc5ZS00ZWIyLWI1NzYtMDk5OWI4NWY5YjJjO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo cache-control: - no-cache content-length: @@ -5800,11 +6215,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:48:10 GMT + - Wed, 19 Oct 2022 23:46:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfNzg4MTYzNWUtZGU4Yy00N2JhLTkyYmMtYjg0N2YzYzhjODJlO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYzI4NzY1MGQtMTc5ZS00ZWIyLWI1NzYtMDk5OWI4NWY5YjJjO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15 pragma: - no-cache server: @@ -5832,22 +6247,22 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.8.3 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfNzg4MTYzNWUtZGU4Yy00N2JhLTkyYmMtYjg0N2YzYzhjODJlO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYzI4NzY1MGQtMTc5ZS00ZWIyLWI1NzYtMDk5OWI4NWY5YjJjO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Pending"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:48:25 GMT + - Wed, 19 Oct 2022 23:46:02 GMT expires: - '-1' pragma: @@ -5865,6 +6280,51 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot dps delete + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.41.0 azsdk-python-mgmt-iothubprovisioningservices/1.1.0 Python/3.9.6 + (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/provisioningServices/dps000002/operationResults/aWQ9b3NfaWRfYzI4NzY1MGQtMTc5ZS00ZWIyLWI1NzYtMDk5OWI4NWY5YjJjO3JlZ2lvbj13ZXN0dXM=?api-version=2021-10-15&asyncinfo + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Devices/ProvisioningServices/dps000002'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '236' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:46:31 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found - request: body: null headers: @@ -5881,15 +6341,15 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/iot000003?api-version=2022-04-30-preview response: body: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYThhMDZiOTYtZWYwOC00YWE3LTg5MzQtNTk0Y2U1YTBjOWY5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDU4ODNhYmItOGVhYi00MTM2LTlmNTMtMzg3YmM2NmY4OGNiO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: @@ -5897,11 +6357,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:48:27 GMT + - Wed, 19 Oct 2022 23:46:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYThhMDZiOTYtZWYwOC00YWE3LTg5MzQtNTk0Y2U1YTBjOWY5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDU4ODNhYmItOGVhYi00MTM2LTlmNTMtMzg3YmM2NmY4OGNiO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other pragma: - no-cache server: @@ -5929,9 +6389,55 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDU4ODNhYmItOGVhYi00MTM2LTlmNTMtMzg3YmM2NmY4OGNiO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 19 Oct 2022 23:46:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub delete + Connection: + - keep-alive + ParameterSetName: + - -n -g + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfYThhMDZiOTYtZWYwOC00YWE3LTg5MzQtNTk0Y2U1YTBjOWY5O3JlZ2lvbj13ZXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westus/operationResults/aWQ9b3NfaWhfNDU4ODNhYmItOGVhYi00MTM2LTlmNTMtMzg3YmM2NmY4OGNiO3JlZ2lvbj13ZXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -5943,7 +6449,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 03 May 2022 17:48:42 GMT + - Wed, 19 Oct 2022 23:47:04 GMT expires: - '-1' pragma: @@ -5961,4 +6467,4 @@ interactions: status: code: 200 message: OK -version: 1 \ No newline at end of file +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_dps_commands.py b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_dps_commands.py index 6f1a55b30da..6203a44c6f7 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_dps_commands.py +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_dps_commands.py @@ -9,6 +9,7 @@ from azure.cli.command_modules.iot.tests.latest._test_utils import ( _create_test_cert, _delete_test_cert, _create_verification_cert, _create_fake_chain_cert ) +from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.command_modules.iot.tests.latest.recording_processors import KeyReplacer from azure.core.exceptions import HttpResponseError import random @@ -210,7 +211,7 @@ def test_dps_certificate_lifecycle(self, group_name, group_location): # Delete DPS self.cmd('az iot dps delete -g {} -n {}'.format(group_name, dps_name)) - + @AllowLargeResponse(size_kb=4096) @ResourceGroupPreparer(parameter_name='group_name', parameter_name_for_location='group_location') def test_dps_linked_hub_lifecycle(self, group_name, group_location): dps_name = self.create_random_name('dps', 20) @@ -258,11 +259,6 @@ def test_dps_linked_hub_lifecycle(self, group_name, group_location): .format(dps_name, group_name, connection_string)) self.cmd('az iot dps linked-hub delete --dps-name {} -g {} --linked-hub {}'.format(dps_name, group_name, hub_name)) - # Create linked-hub using only connection string in lower case - self.cmd('az iot dps linked-hub create --dps-name {} -g {} --connection-string {}' - .format(dps_name, group_name, connection_string.lower())) - self.cmd('az iot dps linked-hub delete --dps-name {} -g {} --linked-hub {}'.format(dps_name, group_name, hub_name)) - # Create linked-hub using connection string and location self.cmd('az iot dps linked-hub create --dps-name {} -g {} --connection-string {} -l {}' .format(dps_name, group_name, connection_string, group_location)) From 95002724e2ad28445824111cd9970b8771ac2265 Mon Sep 17 00:00:00 2001 From: Victoria Litvinova Date: Wed, 19 Oct 2022 18:31:02 -0700 Subject: [PATCH 05/10] regen synapse test --- .../test_kusto_data_connection_iot_hub.yaml | 3098 ++++------------- 1 file changed, 695 insertions(+), 2403 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_kusto_data_connection_iot_hub.yaml b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_kusto_data_connection_iot_hub.yaml index a9f2e3e12b6..21490bbb2b7 100644 --- a/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_kusto_data_connection_iot_hub.yaml +++ b/src/azure-cli/azure/cli/command_modules/synapse/tests/latest/recordings/test_kusto_data_connection_iot_hub.yaml @@ -21,38 +21,38 @@ interactions: - --name --resource-group --storage-account --file-system --sql-admin-login-user --sql-admin-login-password --location User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007?api-version=2021-06-01 response: body: - string: '{"error":{"code":"MissingSubscriptionRegistration","message":"The subscription - is not registered to use namespace ''Microsoft.Synapse''. See https://aka.ms/rps-not-found - for how to register subscriptions.","details":[{"code":"MissingSubscriptionRegistration","target":"Microsoft.Synapse","message":"The - subscription is not registered to use namespace ''Microsoft.Synapse''. See - https://aka.ms/rps-not-found for how to register subscriptions."}]}}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Provisioning","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2fa386d5ea-ea90-441a-8263-d816368c84a1%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000007","dev":"https://clitest000007.dev.azuresynapse.net","sqlOnDemand":"clitest000007-ondemand.sql.azuresynapse.net","sql":"clitest000007.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-8032a4e9-c8ba-46c1-8f2c-64155ec151df","privateEndpointConnections":[],"workspaceUID":"30e616cf-e702-465c-a58a-00fb9f340faa","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"0417ddc2-87dc-4923-8865-84f5bd13acce"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007","location":"eastus","name":"clitest000007","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"c6fabeb5-6ec3-4e69-aa84-a3d853f3f6f5"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/decd8ae9-fe78-4a63-a452-6b9db8686bd8?api-version=2021-06-01 cache-control: - no-cache content-length: - - '442' + - '1393' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:36:42 GMT + - Thu, 20 Oct 2022 00:43:22 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 409 - message: Conflict + code: 201 + message: Created - request: body: null headers: @@ -60,188 +60,35 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate + CommandName: + - synapse workspace create Connection: - keep-alive - Content-Length: - - '0' + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location User-Agent: - - python-requests/2.26.0 - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/register?api-version=2016-02-01 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/decd8ae9-fe78-4a63-a452-6b9db8686bd8?api-version=2021-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse","namespace":"Microsoft.Synapse","authorizations":[{"applicationId":"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b","roleDefinitionId":"a53b114a-452b-4d20-bcd6-c51c3c8c5878","managedByRoleDefinitionId":"ede175bc-31e5-4074-ba98-e62b895797aa"},{"applicationId":"1ac05c7e-12d2-4605-bf9d-549d7041c6b3","roleDefinitionId":"48e77487-c9fa-4abe-8484-71ebdebdbbc2"},{"applicationId":"ec52d13d-2e85-410e-a89a-8c79fb6a32ac","roleDefinitionId":"c3a447c3-a63a-4905-a125-c6856f9d0e17"},{"applicationId":"2e458d69-0892-4655-b713-4f7b182315dd","roleDefinitionId":"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"},{"applicationId":"2746ea77-4702-4b45-80ca-3c97e680e8b7","roleDefinitionId":"253ad606-39c5-4232-9765-fab08d8375e9"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"workspaces/bigDataPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2020-04-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlDatabases","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/sqlDatabaseAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlDatabaseOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/kustoPools","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/kustoPoolOperationResults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/kustoPoolCheckNameAvailability","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/attacheddatabaseconfigurations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases/dataconnections","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/sqlPoolAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlPoolOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"workspaces/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"operations","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","EAST - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"kustoOperations","locations":[],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"privateLinkHubs","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]}],"registrationState":"Registering"}' + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '15690' + - '23' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:36:43 GMT + - Thu, 20 Oct 2022 00:43:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -250,8 +97,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -262,188 +107,39 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate + CommandName: + - synapse workspace create Connection: - keep-alive + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location User-Agent: - - python-requests/2.26.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse?api-version=2016-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/decd8ae9-fe78-4a63-a452-6b9db8686bd8?api-version=2021-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse","namespace":"Microsoft.Synapse","authorizations":[{"applicationId":"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b","roleDefinitionId":"a53b114a-452b-4d20-bcd6-c51c3c8c5878","managedByRoleDefinitionId":"ede175bc-31e5-4074-ba98-e62b895797aa"},{"applicationId":"1ac05c7e-12d2-4605-bf9d-549d7041c6b3","roleDefinitionId":"48e77487-c9fa-4abe-8484-71ebdebdbbc2"},{"applicationId":"ec52d13d-2e85-410e-a89a-8c79fb6a32ac","roleDefinitionId":"c3a447c3-a63a-4905-a125-c6856f9d0e17"},{"applicationId":"2e458d69-0892-4655-b713-4f7b182315dd","roleDefinitionId":"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"},{"applicationId":"2746ea77-4702-4b45-80ca-3c97e680e8b7","roleDefinitionId":"253ad606-39c5-4232-9765-fab08d8375e9"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"workspaces/bigDataPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2020-04-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlDatabases","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/sqlDatabaseAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlDatabaseOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/kustoPools","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/kustoPoolOperationResults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/kustoPoolCheckNameAvailability","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/attacheddatabaseconfigurations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases/dataconnections","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/sqlPoolAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlPoolOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"workspaces/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"operations","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","EAST - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"kustoOperations","locations":[],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"privateLinkHubs","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]}],"registrationState":"Registering"}' + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '15690' + - '23' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:36:53 GMT + - Thu, 20 Oct 2022 00:43: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: @@ -458,188 +154,39 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate + CommandName: + - synapse workspace create Connection: - keep-alive + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location User-Agent: - - python-requests/2.26.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse?api-version=2016-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/decd8ae9-fe78-4a63-a452-6b9db8686bd8?api-version=2021-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse","namespace":"Microsoft.Synapse","authorizations":[{"applicationId":"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b","roleDefinitionId":"a53b114a-452b-4d20-bcd6-c51c3c8c5878","managedByRoleDefinitionId":"ede175bc-31e5-4074-ba98-e62b895797aa"},{"applicationId":"1ac05c7e-12d2-4605-bf9d-549d7041c6b3","roleDefinitionId":"48e77487-c9fa-4abe-8484-71ebdebdbbc2"},{"applicationId":"ec52d13d-2e85-410e-a89a-8c79fb6a32ac","roleDefinitionId":"c3a447c3-a63a-4905-a125-c6856f9d0e17"},{"applicationId":"2e458d69-0892-4655-b713-4f7b182315dd","roleDefinitionId":"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"},{"applicationId":"2746ea77-4702-4b45-80ca-3c97e680e8b7","roleDefinitionId":"253ad606-39c5-4232-9765-fab08d8375e9"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"workspaces/bigDataPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2020-04-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlDatabases","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/sqlDatabaseAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlDatabaseOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/kustoPools","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/kustoPoolOperationResults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/kustoPoolCheckNameAvailability","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/attacheddatabaseconfigurations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases/dataconnections","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/sqlPoolAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlPoolOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"workspaces/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"operations","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","EAST - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"kustoOperations","locations":[],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"privateLinkHubs","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]}],"registrationState":"Registering"}' + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '15690' + - '23' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:37:02 GMT + - Thu, 20 Oct 2022 00:44:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -654,188 +201,39 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate + CommandName: + - synapse workspace create Connection: - keep-alive + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location User-Agent: - - python-requests/2.26.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse?api-version=2016-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/decd8ae9-fe78-4a63-a452-6b9db8686bd8?api-version=2021-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse","namespace":"Microsoft.Synapse","authorizations":[{"applicationId":"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b","roleDefinitionId":"a53b114a-452b-4d20-bcd6-c51c3c8c5878","managedByRoleDefinitionId":"ede175bc-31e5-4074-ba98-e62b895797aa"},{"applicationId":"1ac05c7e-12d2-4605-bf9d-549d7041c6b3","roleDefinitionId":"48e77487-c9fa-4abe-8484-71ebdebdbbc2"},{"applicationId":"ec52d13d-2e85-410e-a89a-8c79fb6a32ac","roleDefinitionId":"c3a447c3-a63a-4905-a125-c6856f9d0e17"},{"applicationId":"2e458d69-0892-4655-b713-4f7b182315dd","roleDefinitionId":"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"},{"applicationId":"2746ea77-4702-4b45-80ca-3c97e680e8b7","roleDefinitionId":"253ad606-39c5-4232-9765-fab08d8375e9"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"workspaces/bigDataPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2020-04-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlDatabases","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/sqlDatabaseAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlDatabaseOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/kustoPools","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/kustoPoolOperationResults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/kustoPoolCheckNameAvailability","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/attacheddatabaseconfigurations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases/dataconnections","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/sqlPoolAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlPoolOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"workspaces/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"operations","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","EAST - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"kustoOperations","locations":[],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"privateLinkHubs","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]}],"registrationState":"Registering"}' + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '15690' + - '23' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:37:13 GMT + - Thu, 20 Oct 2022 00:44: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: @@ -850,188 +248,39 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate + CommandName: + - synapse workspace create Connection: - keep-alive + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location User-Agent: - - python-requests/2.26.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse?api-version=2016-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/decd8ae9-fe78-4a63-a452-6b9db8686bd8?api-version=2021-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse","namespace":"Microsoft.Synapse","authorizations":[{"applicationId":"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b","roleDefinitionId":"a53b114a-452b-4d20-bcd6-c51c3c8c5878","managedByRoleDefinitionId":"ede175bc-31e5-4074-ba98-e62b895797aa"},{"applicationId":"1ac05c7e-12d2-4605-bf9d-549d7041c6b3","roleDefinitionId":"48e77487-c9fa-4abe-8484-71ebdebdbbc2"},{"applicationId":"ec52d13d-2e85-410e-a89a-8c79fb6a32ac","roleDefinitionId":"c3a447c3-a63a-4905-a125-c6856f9d0e17"},{"applicationId":"2e458d69-0892-4655-b713-4f7b182315dd","roleDefinitionId":"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"},{"applicationId":"2746ea77-4702-4b45-80ca-3c97e680e8b7","roleDefinitionId":"253ad606-39c5-4232-9765-fab08d8375e9"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"workspaces/bigDataPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2020-04-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlDatabases","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/sqlDatabaseAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlDatabaseOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/kustoPools","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/kustoPoolOperationResults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/kustoPoolCheckNameAvailability","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/attacheddatabaseconfigurations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases/dataconnections","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/sqlPoolAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlPoolOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"workspaces/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"operations","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","EAST - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"kustoOperations","locations":[],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"privateLinkHubs","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]}],"registrationState":"Registering"}' + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '15690' + - '23' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:37:23 GMT + - Thu, 20 Oct 2022 00:45:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -1046,188 +295,39 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate + CommandName: + - synapse workspace create Connection: - keep-alive + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location User-Agent: - - python-requests/2.26.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse?api-version=2016-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/decd8ae9-fe78-4a63-a452-6b9db8686bd8?api-version=2021-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse","namespace":"Microsoft.Synapse","authorizations":[{"applicationId":"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b","roleDefinitionId":"a53b114a-452b-4d20-bcd6-c51c3c8c5878","managedByRoleDefinitionId":"ede175bc-31e5-4074-ba98-e62b895797aa"},{"applicationId":"1ac05c7e-12d2-4605-bf9d-549d7041c6b3","roleDefinitionId":"48e77487-c9fa-4abe-8484-71ebdebdbbc2"},{"applicationId":"ec52d13d-2e85-410e-a89a-8c79fb6a32ac","roleDefinitionId":"c3a447c3-a63a-4905-a125-c6856f9d0e17"},{"applicationId":"2e458d69-0892-4655-b713-4f7b182315dd","roleDefinitionId":"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"},{"applicationId":"2746ea77-4702-4b45-80ca-3c97e680e8b7","roleDefinitionId":"253ad606-39c5-4232-9765-fab08d8375e9"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"workspaces/bigDataPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2020-04-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlDatabases","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/sqlDatabaseAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlDatabaseOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/kustoPools","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/kustoPoolOperationResults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/kustoPoolCheckNameAvailability","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/attacheddatabaseconfigurations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases/dataconnections","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/sqlPoolAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlPoolOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"workspaces/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"operations","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","EAST - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"kustoOperations","locations":[],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"privateLinkHubs","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]}],"registrationState":"Registering"}' + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '15690' + - '23' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:37:33 GMT + - Thu, 20 Oct 2022 00:45: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: @@ -1242,188 +342,39 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate + CommandName: + - synapse workspace create Connection: - keep-alive + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location User-Agent: - - python-requests/2.26.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse?api-version=2016-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/decd8ae9-fe78-4a63-a452-6b9db8686bd8?api-version=2021-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse","namespace":"Microsoft.Synapse","authorizations":[{"applicationId":"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b","roleDefinitionId":"a53b114a-452b-4d20-bcd6-c51c3c8c5878","managedByRoleDefinitionId":"ede175bc-31e5-4074-ba98-e62b895797aa"},{"applicationId":"1ac05c7e-12d2-4605-bf9d-549d7041c6b3","roleDefinitionId":"48e77487-c9fa-4abe-8484-71ebdebdbbc2"},{"applicationId":"ec52d13d-2e85-410e-a89a-8c79fb6a32ac","roleDefinitionId":"c3a447c3-a63a-4905-a125-c6856f9d0e17"},{"applicationId":"2e458d69-0892-4655-b713-4f7b182315dd","roleDefinitionId":"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"},{"applicationId":"2746ea77-4702-4b45-80ca-3c97e680e8b7","roleDefinitionId":"253ad606-39c5-4232-9765-fab08d8375e9"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"workspaces/bigDataPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2020-04-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlDatabases","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/sqlDatabaseAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlDatabaseOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/kustoPools","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/kustoPoolOperationResults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/kustoPoolCheckNameAvailability","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/attacheddatabaseconfigurations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases/dataconnections","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/sqlPoolAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlPoolOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"workspaces/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"operations","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","EAST - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"kustoOperations","locations":[],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"privateLinkHubs","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]}],"registrationState":"Registering"}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '15690' + - '22' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:37:43 GMT + - Thu, 20 Oct 2022 00:46:23 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -1438,188 +389,39 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate + CommandName: + - synapse workspace create Connection: - keep-alive + ParameterSetName: + - --name --resource-group --storage-account --file-system --sql-admin-login-user + --sql-admin-login-password --location User-Agent: - - python-requests/2.26.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse?api-version=2016-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007?api-version=2021-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse","namespace":"Microsoft.Synapse","authorizations":[{"applicationId":"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b","roleDefinitionId":"a53b114a-452b-4d20-bcd6-c51c3c8c5878","managedByRoleDefinitionId":"ede175bc-31e5-4074-ba98-e62b895797aa"},{"applicationId":"1ac05c7e-12d2-4605-bf9d-549d7041c6b3","roleDefinitionId":"48e77487-c9fa-4abe-8484-71ebdebdbbc2"},{"applicationId":"ec52d13d-2e85-410e-a89a-8c79fb6a32ac","roleDefinitionId":"c3a447c3-a63a-4905-a125-c6856f9d0e17"},{"applicationId":"2e458d69-0892-4655-b713-4f7b182315dd","roleDefinitionId":"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"},{"applicationId":"2746ea77-4702-4b45-80ca-3c97e680e8b7","roleDefinitionId":"253ad606-39c5-4232-9765-fab08d8375e9"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"workspaces/bigDataPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2020-04-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlDatabases","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/sqlDatabaseAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlDatabaseOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/kustoPools","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/kustoPoolOperationResults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/kustoPoolCheckNameAvailability","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/attacheddatabaseconfigurations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases/dataconnections","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/sqlPoolAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlPoolOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"workspaces/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"operations","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","EAST - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"kustoOperations","locations":[],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"privateLinkHubs","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]}],"registrationState":"Registering"}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2fa386d5ea-ea90-441a-8263-d816368c84a1%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000007","dev":"https://clitest000007.dev.azuresynapse.net","sqlOnDemand":"clitest000007-ondemand.sql.azuresynapse.net","sql":"clitest000007.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-8032a4e9-c8ba-46c1-8f2c-64155ec151df","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"30e616cf-e702-465c-a58a-00fb9f340faa","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"0417ddc2-87dc-4923-8865-84f5bd13acce"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007","location":"eastus","name":"clitest000007","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"c6fabeb5-6ec3-4e69-aa84-a3d853f3f6f5"}}' headers: cache-control: - no-cache content-length: - - '15690' + - '1448' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:37:53 GMT + - Thu, 20 Oct 2022 00:46:24 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -1628,198 +430,54 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"name": "clitest000007", "type": "Microsoft.Synapse/workspaces"}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - synapse workspace check-name Connection: - keep-alive + Content-Length: + - '65' + Content-Type: + - application/json + ParameterSetName: + - --name User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse?api-version=2016-02-01 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/checkNameAvailability?api-version=2021-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse","namespace":"Microsoft.Synapse","authorizations":[{"applicationId":"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b","roleDefinitionId":"a53b114a-452b-4d20-bcd6-c51c3c8c5878","managedByRoleDefinitionId":"ede175bc-31e5-4074-ba98-e62b895797aa"},{"applicationId":"1ac05c7e-12d2-4605-bf9d-549d7041c6b3","roleDefinitionId":"48e77487-c9fa-4abe-8484-71ebdebdbbc2"},{"applicationId":"ec52d13d-2e85-410e-a89a-8c79fb6a32ac","roleDefinitionId":"c3a447c3-a63a-4905-a125-c6856f9d0e17"},{"applicationId":"2e458d69-0892-4655-b713-4f7b182315dd","roleDefinitionId":"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"},{"applicationId":"2746ea77-4702-4b45-80ca-3c97e680e8b7","roleDefinitionId":"253ad606-39c5-4232-9765-fab08d8375e9"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"workspaces/bigDataPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2020-04-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlDatabases","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/sqlDatabaseAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlDatabaseOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/kustoPools","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/kustoPoolOperationResults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/kustoPoolCheckNameAvailability","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/attacheddatabaseconfigurations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases/dataconnections","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/sqlPoolAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlPoolOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"workspaces/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"operations","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","EAST - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"kustoOperations","locations":[],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"privateLinkHubs","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]}],"registrationState":"Registering"}' + string: '{"available":false,"message":"Workspace name clitest000007 is not available","reason":"AlreadyExists","name":"clitest000007"}' headers: cache-control: - no-cache content-length: - - '15690' + - '125' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:38:04 GMT + - Thu, 20 Oct 2022 00:46:27 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK @@ -1827,191 +485,42 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - synapse kusto pool create Connection: - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name User-Agent: - - python-requests/2.26.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse?api-version=2016-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007?api-version=2021-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse","namespace":"Microsoft.Synapse","authorizations":[{"applicationId":"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b","roleDefinitionId":"a53b114a-452b-4d20-bcd6-c51c3c8c5878","managedByRoleDefinitionId":"ede175bc-31e5-4074-ba98-e62b895797aa"},{"applicationId":"1ac05c7e-12d2-4605-bf9d-549d7041c6b3","roleDefinitionId":"48e77487-c9fa-4abe-8484-71ebdebdbbc2"},{"applicationId":"ec52d13d-2e85-410e-a89a-8c79fb6a32ac","roleDefinitionId":"c3a447c3-a63a-4905-a125-c6856f9d0e17"},{"applicationId":"2e458d69-0892-4655-b713-4f7b182315dd","roleDefinitionId":"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"},{"applicationId":"2746ea77-4702-4b45-80ca-3c97e680e8b7","roleDefinitionId":"253ad606-39c5-4232-9765-fab08d8375e9"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"workspaces/bigDataPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2020-04-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlDatabases","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/sqlDatabaseAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlDatabaseOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/kustoPools","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/kustoPoolOperationResults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/kustoPoolCheckNameAvailability","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/attacheddatabaseconfigurations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases/dataconnections","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/sqlPoolAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlPoolOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"workspaces/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"operations","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","EAST - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"kustoOperations","locations":[],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"privateLinkHubs","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]}],"registrationState":"Registering"}' + string: '{"properties":{"defaultDataLakeStorage":{"createManagedPrivateEndpoint":false,"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2fa386d5ea-ea90-441a-8263-d816368c84a1%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000007","dev":"https://clitest000007.dev.azuresynapse.net","sqlOnDemand":"clitest000007-ondemand.sql.azuresynapse.net","sql":"clitest000007.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-8032a4e9-c8ba-46c1-8f2c-64155ec151df","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"30e616cf-e702-465c-a58a-00fb9f340faa","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"0417ddc2-87dc-4923-8865-84f5bd13acce"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007","location":"eastus","name":"clitest000007","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"c6fabeb5-6ec3-4e69-aa84-a3d853f3f6f5"}}' headers: cache-control: - no-cache content-length: - - '15690' + - '1448' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:38:13 GMT + - Thu, 20 Oct 2022 00:46:28 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -2020,201 +529,61 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "eastus", "sku": {"name": "Storage optimized", "capacity": + 2, "size": "Medium"}, "properties": {"enableStreamingIngest": true, "enablePurge": + true, "workspaceUID": "30e616cf-e702-465c-a58a-00fb9f340faa"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate + CommandName: + - synapse kusto pool create Connection: - keep-alive + Content-Length: + - '217' + Content-Type: + - application/json + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name User-Agent: - - python-requests/2.26.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse?api-version=2016-02-01 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse","namespace":"Microsoft.Synapse","authorizations":[{"applicationId":"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b","roleDefinitionId":"a53b114a-452b-4d20-bcd6-c51c3c8c5878","managedByRoleDefinitionId":"ede175bc-31e5-4074-ba98-e62b895797aa"},{"applicationId":"1ac05c7e-12d2-4605-bf9d-549d7041c6b3","roleDefinitionId":"48e77487-c9fa-4abe-8484-71ebdebdbbc2"},{"applicationId":"ec52d13d-2e85-410e-a89a-8c79fb6a32ac","roleDefinitionId":"c3a447c3-a63a-4905-a125-c6856f9d0e17"},{"applicationId":"2e458d69-0892-4655-b713-4f7b182315dd","roleDefinitionId":"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"},{"applicationId":"2746ea77-4702-4b45-80ca-3c97e680e8b7","roleDefinitionId":"253ad606-39c5-4232-9765-fab08d8375e9"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"workspaces/bigDataPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2020-04-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlDatabases","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/sqlDatabaseAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlDatabaseOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/kustoPools","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/kustoPoolOperationResults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/kustoPoolCheckNameAvailability","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/attacheddatabaseconfigurations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases/dataconnections","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/sqlPoolAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlPoolOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"workspaces/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"operations","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","EAST - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"kustoOperations","locations":[],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"privateLinkHubs","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]}],"registrationState":"Registering"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003","name":"clitest000007/testkstpool000003","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"\"","location":"eastus","sku":{"name":"Storage + optimized","size":"Medium","capacity":2},"properties":{"state":"Creating","enableStreamingIngest":true,"enablePurge":true,"workspaceUID":"30e616cf-e702-465c-a58a-00fb9f340faa","provisioningState":"Creating"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview cache-control: - no-cache content-length: - - '15690' + - '530' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:38:23 GMT + - Thu, 20 Oct 2022 00:46:31 GMT + etag: + - '""' expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -2222,188 +591,39 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate + CommandName: + - synapse kusto pool create Connection: - keep-alive + ParameterSetName: + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name User-Agent: - - python-requests/2.26.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse?api-version=2016-02-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse","namespace":"Microsoft.Synapse","authorizations":[{"applicationId":"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b","roleDefinitionId":"a53b114a-452b-4d20-bcd6-c51c3c8c5878","managedByRoleDefinitionId":"ede175bc-31e5-4074-ba98-e62b895797aa"},{"applicationId":"1ac05c7e-12d2-4605-bf9d-549d7041c6b3","roleDefinitionId":"48e77487-c9fa-4abe-8484-71ebdebdbbc2"},{"applicationId":"ec52d13d-2e85-410e-a89a-8c79fb6a32ac","roleDefinitionId":"c3a447c3-a63a-4905-a125-c6856f9d0e17"},{"applicationId":"2e458d69-0892-4655-b713-4f7b182315dd","roleDefinitionId":"45EA3B16-D4DD-48CA-BF0D-BBE644C0C0AF"},{"applicationId":"2746ea77-4702-4b45-80ca-3c97e680e8b7","roleDefinitionId":"253ad606-39c5-4232-9765-fab08d8375e9"}],"resourceTypes":[{"resourceType":"workspaces","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"workspaces/bigDataPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlPools","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2020-04-01-preview","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"workspaces/sqlDatabases","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/sqlDatabaseAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlDatabaseOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/kustoPools","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations/kustoPoolOperationResults","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/kustoPoolCheckNameAvailability","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/attacheddatabaseconfigurations","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"workspaces/kustoPools/databases/dataconnections","locations":["Australia - Central","Australia Central 2","Australia East","Australia Southeast","Brazil - South","Brazil Southeast","Canada Central","Canada East","Central India","Central - US","East Asia","East US","East US 2","France Central","France South","Germany - West Central","Japan East","Japan West","Jio India West","Korea Central","North - Central US","North Europe","Norway East","Norway West","South Africa North","South - Africa West","South Central US","South India","Southeast Asia","Switzerland - North","Switzerland West","UAE Central","UAE North","UK South","UK West","West - Central US","West Europe","West India","West US","West US 2","West US 3","East - US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"locations/sqlPoolAzureAsyncOperation","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"locations/sqlPoolOperationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2020-04-01-preview"]},{"resourceType":"workspaces/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"workspaces/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"checkNameAvailability","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"operations","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","EAST - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"kustoOperations","locations":[],"apiVersions":["2021-06-01-preview","2021-04-01-preview"]},{"resourceType":"privateLinkHubs","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationResults","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]},{"resourceType":"locations/operationStatuses","locations":["West - US 2","East US","North Europe","West Europe","Southeast Asia","Australia East","West - Central US","South Central US","East US 2","UK South","West US","Australia - Southeast","East Asia","Brazil South","Central US","Central India","Japan - East","North Central US","Canada Central","Canada East","Korea Central","South - Africa North","UK West","Japan West","France Central","Switzerland North","Germany - West Central","Norway East","UAE North","West US 3","Jio India West","East - US 2 EUAP"],"apiVersions":["2021-06-01-preview","2021-06-01","2021-05-01","2021-04-01-preview","2021-03-01","2020-12-01","2019-06-01-preview"]}],"registrationState":"Registered"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:46:31.7729183Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '15689' + - '509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:38:33 GMT + - Thu, 20 Oct 2022 00:46:31 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -2412,44 +632,35 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"defaultDataLakeStorage": {"accountUrl": "https://adlsgen2000002.dfs.core.windows.net", - "filesystem": "testfilesystem"}, "sqlAdministratorLoginPassword": "Pswd1000008", - "sqlAdministratorLogin": "cliuser1"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - synapse workspace create + - synapse kusto pool create Connection: - keep-alive - Content-Length: - - '284' - Content-Type: - - application/json ParameterSetName: - - --name --resource-group --storage-account --file-system --sql-admin-login-user - --sql-admin-login-password --location + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007?api-version=2021-06-01 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"properties":{"defaultDataLakeStorage":{"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Provisioning","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2fa386d5ea-ea90-441a-8263-d816368c84a1%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000007","dev":"https://clitest000007.dev.azuresynapse.net","sqlOnDemand":"clitest000007-ondemand.sql.azuresynapse.net","sql":"clitest000007.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-3bcfcfcf-18a9-4829-baeb-e130677581ae","privateEndpointConnections":[],"workspaceUID":"db31c5da-e64d-4c9c-87f8-afaf843f1ebc","extraProperties":{"WorkspaceType":"Normal"},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"9e98f8a7-2df2-4605-90c3-0ac12e7b4694"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007","location":"eastus","name":"clitest000007","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"3b883412-1fa3-4a97-8737-a9e8903e2ef1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:46:31.7729183Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/2f60fc58-81e6-4f2e-89ab-7ace4a5a1280?api-version=2021-06-01 cache-control: - no-cache content-length: - - '1356' + - '509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:38:39 GMT + - Thu, 20 Oct 2022 00:47:02 GMT expires: - '-1' pragma: @@ -2458,13 +669,15 @@ 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-writes: - - '1198' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2473,28 +686,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse workspace create + - synapse kusto pool create Connection: - keep-alive ParameterSetName: - - --name --resource-group --storage-account --file-system --sql-admin-login-user - --sql-admin-login-password --location + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/2f60fc58-81e6-4f2e-89ab-7ace4a5a1280?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"status":"InProgress"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:46:31.7729183Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '23' + - '509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:39:09 GMT + - Thu, 20 Oct 2022 00:47:32 GMT expires: - '-1' pragma: @@ -2520,28 +733,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse workspace create + - synapse kusto pool create Connection: - keep-alive ParameterSetName: - - --name --resource-group --storage-account --file-system --sql-admin-login-user - --sql-admin-login-password --location + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/2f60fc58-81e6-4f2e-89ab-7ace4a5a1280?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"status":"InProgress"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:46:31.7729183Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '23' + - '509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:39:40 GMT + - Thu, 20 Oct 2022 00:48:02 GMT expires: - '-1' pragma: @@ -2567,28 +780,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse workspace create + - synapse kusto pool create Connection: - keep-alive ParameterSetName: - - --name --resource-group --storage-account --file-system --sql-admin-login-user - --sql-admin-login-password --location + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/2f60fc58-81e6-4f2e-89ab-7ace4a5a1280?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"status":"InProgress"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:46:31.7729183Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '23' + - '509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:40:10 GMT + - Thu, 20 Oct 2022 00:48:32 GMT expires: - '-1' pragma: @@ -2614,28 +827,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse workspace create + - synapse kusto pool create Connection: - keep-alive ParameterSetName: - - --name --resource-group --storage-account --file-system --sql-admin-login-user - --sql-admin-login-password --location + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/2f60fc58-81e6-4f2e-89ab-7ace4a5a1280?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"status":"InProgress"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '23' + - '509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:40:39 GMT + - Thu, 20 Oct 2022 00:49:02 GMT expires: - '-1' pragma: @@ -2661,28 +874,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse workspace create + - synapse kusto pool create Connection: - keep-alive ParameterSetName: - - --name --resource-group --storage-account --file-system --sql-admin-login-user - --sql-admin-login-password --location + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/2f60fc58-81e6-4f2e-89ab-7ace4a5a1280?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"status":"InProgress"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '23' + - '509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:41:10 GMT + - Thu, 20 Oct 2022 00:49:33 GMT expires: - '-1' pragma: @@ -2708,28 +921,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse workspace create + - synapse kusto pool create Connection: - keep-alive ParameterSetName: - - --name --resource-group --storage-account --file-system --sql-admin-login-user - --sql-admin-login-password --location + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/operationStatuses/2f60fc58-81e6-4f2e-89ab-7ace4a5a1280?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '22' + - '509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:41:40 GMT + - Thu, 20 Oct 2022 00:50:03 GMT expires: - '-1' pragma: @@ -2755,28 +968,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse workspace create + - synapse kusto pool create Connection: - keep-alive ParameterSetName: - - --name --resource-group --storage-account --file-system --sql-admin-login-user - --sql-admin-login-password --location + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"properties":{"defaultDataLakeStorage":{"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2fa386d5ea-ea90-441a-8263-d816368c84a1%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000007","dev":"https://clitest000007.dev.azuresynapse.net","sqlOnDemand":"clitest000007-ondemand.sql.azuresynapse.net","sql":"clitest000007.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-3bcfcfcf-18a9-4829-baeb-e130677581ae","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"db31c5da-e64d-4c9c-87f8-afaf843f1ebc","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"9e98f8a7-2df2-4605-90c3-0ac12e7b4694"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007","location":"eastus","name":"clitest000007","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"3b883412-1fa3-4a97-8737-a9e8903e2ef1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '1411' + - '509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:41:40 GMT + - Thu, 20 Oct 2022 00:50:33 GMT expires: - '-1' pragma: @@ -2795,38 +1008,35 @@ interactions: code: 200 message: OK - request: - body: '{"name": "clitest000007", "type": "Microsoft.Synapse/workspaces"}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - synapse workspace check-name + - synapse kusto pool create Connection: - keep-alive - Content-Length: - - '65' - Content-Type: - - application/json ParameterSetName: - - --name + - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group + --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/checkNameAvailability?api-version=2021-06-01 + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"available":false,"message":"Workspace name clitest000007 is not available","reason":"AlreadyExists","name":"clitest000007"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '125' + - '509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:41:41 GMT + - Thu, 20 Oct 2022 00:51:03 GMT expires: - '-1' pragma: @@ -2841,8 +1051,6 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -2850,7 +1058,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2861,21 +1069,21 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007?api-version=2021-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"properties":{"defaultDataLakeStorage":{"accountUrl":"https://adlsgen2000002.dfs.core.windows.net","filesystem":"testfilesystem"},"encryption":{"doubleEncryptionEnabled":false},"provisioningState":"Succeeded","connectivityEndpoints":{"web":"https://web.azuresynapse.net?workspace=%2fsubscriptions%2fa386d5ea-ea90-441a-8263-d816368c84a1%2fresourceGroups%2fsynapse-cli000001%2fproviders%2fMicrosoft.Synapse%2fworkspaces%2fclitest000007","dev":"https://clitest000007.dev.azuresynapse.net","sqlOnDemand":"clitest000007-ondemand.sql.azuresynapse.net","sql":"clitest000007.sql.azuresynapse.net"},"managedResourceGroupName":"synapseworkspace-managedrg-3bcfcfcf-18a9-4829-baeb-e130677581ae","sqlAdministratorLogin":"cliuser1","privateEndpointConnections":[],"workspaceUID":"db31c5da-e64d-4c9c-87f8-afaf843f1ebc","extraProperties":{"WorkspaceType":"Normal","IsScopeEnabled":false},"publicNetworkAccess":"Enabled","cspWorkspaceAdminProperties":{"initialWorkspaceAdminObjectId":"9e98f8a7-2df2-4605-90c3-0ac12e7b4694"},"trustedServiceBypassEnabled":false},"type":"Microsoft.Synapse/workspaces","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007","location":"eastus","name":"clitest000007","identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"3b883412-1fa3-4a97-8737-a9e8903e2ef1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '1411' + - '509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:41:42 GMT + - Thu, 20 Oct 2022 00:51:33 GMT expires: - '-1' pragma: @@ -2894,46 +1102,35 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "sku": {"name": "Storage optimized", "capacity": - 2, "size": "Medium"}, "properties": {"enableStreamingIngest": true, "enablePurge": - true, "workspaceUID": "db31c5da-e64d-4c9c-87f8-afaf843f1ebc"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - synapse kusto pool create Connection: - keep-alive - Content-Length: - - '217' - Content-Type: - - application/json ParameterSetName: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003?api-version=2021-06-01-preview + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003","name":"clitest000007/testkstpool000003","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"\"","location":"eastus","sku":{"name":"Storage - optimized","size":"Medium","capacity":2},"properties":{"state":"Creating","enableStreamingIngest":true,"enablePurge":true,"workspaceUID":"db31c5da-e64d-4c9c-87f8-afaf843f1ebc","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview cache-control: - no-cache content-length: - - '530' + - '509' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:41:45 GMT - etag: - - '""' + - Thu, 20 Oct 2022 00:52:04 GMT expires: - '-1' pragma: @@ -2942,13 +1139,15 @@ 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-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2964,12 +1163,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:41:46.1072015Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -2978,7 +1177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:42:15 GMT + - Thu, 20 Oct 2022 00:52:34 GMT expires: - '-1' pragma: @@ -3011,12 +1210,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:41:46.1072015Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3025,7 +1224,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:42:47 GMT + - Thu, 20 Oct 2022 00:53:04 GMT expires: - '-1' pragma: @@ -3058,12 +1257,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:41:46.1072015Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3072,7 +1271,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:43:16 GMT + - Thu, 20 Oct 2022 00:53:34 GMT expires: - '-1' pragma: @@ -3105,12 +1304,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:41:46.1072015Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3119,7 +1318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:43:46 GMT + - Thu, 20 Oct 2022 00:54:04 GMT expires: - '-1' pragma: @@ -3152,12 +1351,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:41:46.1072015Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3166,7 +1365,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:44:16 GMT + - Thu, 20 Oct 2022 00:54:34 GMT expires: - '-1' pragma: @@ -3199,12 +1398,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3213,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:44:46 GMT + - Thu, 20 Oct 2022 00:55:04 GMT expires: - '-1' pragma: @@ -3246,12 +1445,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3260,7 +1459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:45:17 GMT + - Thu, 20 Oct 2022 00:55:34 GMT expires: - '-1' pragma: @@ -3293,12 +1492,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3307,7 +1506,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:45:47 GMT + - Thu, 20 Oct 2022 00:56:04 GMT expires: - '-1' pragma: @@ -3340,12 +1539,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3354,7 +1553,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:46:17 GMT + - Thu, 20 Oct 2022 00:56:35 GMT expires: - '-1' pragma: @@ -3387,12 +1586,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3401,7 +1600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:46:47 GMT + - Thu, 20 Oct 2022 00:57:05 GMT expires: - '-1' pragma: @@ -3434,12 +1633,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3448,7 +1647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:47:17 GMT + - Thu, 20 Oct 2022 00:57:35 GMT expires: - '-1' pragma: @@ -3481,12 +1680,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3495,7 +1694,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:47:48 GMT + - Thu, 20 Oct 2022 00:58:05 GMT expires: - '-1' pragma: @@ -3528,12 +1727,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3542,7 +1741,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:48:18 GMT + - Thu, 20 Oct 2022 00:58:36 GMT expires: - '-1' pragma: @@ -3575,12 +1774,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3589,7 +1788,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:48:48 GMT + - Thu, 20 Oct 2022 00:59:06 GMT expires: - '-1' pragma: @@ -3622,12 +1821,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3636,7 +1835,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:49:18 GMT + - Thu, 20 Oct 2022 00:59:36 GMT expires: - '-1' pragma: @@ -3669,12 +1868,12 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Running","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T00:48:42.4275506Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -3683,7 +1882,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:49:48 GMT + - Thu, 20 Oct 2022 01:00:06 GMT expires: - '-1' pragma: @@ -3716,21 +1915,21 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/5b9d9f6d-0822-481a-8e26-1248ff4301d3","name":"5b9d9f6d-0822-481a-8e26-1248ff4301d3","status":"Succeeded","startTime":"2022-10-20T00:46:31.7729183Z","endTime":"2022-10-20T01:00:11.3720928Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"4dd1c6c1-2a39-4831-9a3d-cc8b255f5647","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '509' + - '512' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:50:19 GMT + - Thu, 20 Oct 2022 01:00:36 GMT expires: - '-1' pragma: @@ -3763,21 +1962,24 @@ interactions: - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003","name":"clitest000007/testkstpool000003","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2022-10-20T01:00:09.8095059Z\"","location":"East + US","sku":{"name":"Storage optimized","size":"Medium","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testkstpool000003.clitest000007.kusto.azuresynapse.net","dataIngestionUri":"https://ingest-testkstpool000003.clitest000007.kusto.azuresynapse.net","optimizedAutoscale":null,"enableStreamingIngest":true,"languageExtensions":{"value":[]},"enablePurge":true,"workspaceUID":"30e616cf-e702-465c-a58a-00fb9f340faa","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '509' + - '810' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:50:49 GMT + - Thu, 20 Oct 2022 01:00:37 GMT + etag: + - '"2022-10-20T01:00:09.8095059Z"' expires: - '-1' pragma: @@ -3796,35 +1998,41 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "eastus", "kind": "ReadWrite", "properties": {"softDeletePeriod": + "P1D"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - synapse kusto pool create + - synapse kusto database create Connection: - keep-alive + Content-Length: + - '86' + Content-Type: + - application/json ParameterSetName: - - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group - --workspace-name + - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/Databases/testdtabase000004","name":"clitest000007/testkstpool000003/testdtabase000004","type":"Microsoft.Synapse/workspaces/kustoPools/Databases","location":"eastus","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","provisioningState":"Creating"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/95b86acb-0a58-4323-9bc6-5932488090f5?api-version=2021-06-01-preview cache-control: - no-cache content-length: - - '509' + - '431' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:51:19 GMT + - Thu, 20 Oct 2022 01:00:40 GMT expires: - '-1' pragma: @@ -3833,15 +2041,13 @@ 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-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -3850,28 +2056,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse kusto pool create + - synapse kusto database create Connection: - keep-alive ParameterSetName: - - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group - --workspace-name + - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/95b86acb-0a58-4323-9bc6-5932488090f5?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/95b86acb-0a58-4323-9bc6-5932488090f5","name":"95b86acb-0a58-4323-9bc6-5932488090f5","status":"Running","startTime":"2022-10-20T01:00:39.9505379Z","endTime":"2022-10-20T01:00:39.9505379Z","percentComplete":0.5,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"65f86e8f-941f-41cb-a9e9-db721852b614","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '509' + - '503' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:51:48 GMT + - Thu, 20 Oct 2022 01:00:40 GMT expires: - '-1' pragma: @@ -3897,28 +2102,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse kusto pool create + - synapse kusto database create Connection: - keep-alive ParameterSetName: - - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group - --workspace-name + - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/95b86acb-0a58-4323-9bc6-5932488090f5?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/95b86acb-0a58-4323-9bc6-5932488090f5","name":"95b86acb-0a58-4323-9bc6-5932488090f5","status":"Succeeded","startTime":"2022-10-20T01:00:39.9505379Z","endTime":"2022-10-20T01:00:41.8099369Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"65f86e8f-941f-41cb-a9e9-db721852b614","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '509' + - '506' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:52:19 GMT + - Thu, 20 Oct 2022 01:01:10 GMT expires: - '-1' pragma: @@ -3944,28 +2148,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse kusto pool create + - synapse kusto database create Connection: - keep-alive ParameterSetName: - - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group - --workspace-name + - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/Databases/testdtabase000004","name":"clitest000007/testkstpool000003/testdtabase000004","type":"Microsoft.Synapse/workspaces/kustoPools/Databases","location":"East + US","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","statistics":{"size":0.0},"isFollowed":false,"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '509' + - '478' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:52:49 GMT + - Thu, 20 Oct 2022 01:01:10 GMT expires: - '-1' pragma: @@ -3984,35 +2188,47 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "eastus", "properties": {"eventHubEndpoints": {"events": {"retentionTimeInDays": + 1, "partitionCount": 4}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": + "PT1H", "connectionString": "", "containerName": ""}}, "messagingEndpoints": + {"fileNotifications": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", + "maxDeliveryCount": 10}}, "enableFileUploadNotifications": false, "cloudToDevice": + {"maxDeliveryCount": 10, "defaultTtlAsIso8601": "PT1H", "feedback": {"lockDurationAsIso8601": + "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}}, "sku": {"name": "S1", + "capacity": 1}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - synapse kusto pool create + - iot hub create Connection: - keep-alive + Content-Length: + - '603' + Content-Type: + - application/json ParameterSetName: - - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group - --workspace-name + - --resource-group --name --location User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Devices/IotHubs/testiothub000006?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Devices/IotHubs/testiothub000006","name":"testiothub000006","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"synapse-cli000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfNGI0YzdkZTYtYjUwOS00MTM5LThjNzUtZTdmOGNmZGE1OTAzO3JlZ2lvbj1lYXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '509' + - '1051' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:53:20 GMT + - Thu, 20 Oct 2022 01:01:14 GMT expires: - '-1' pragma: @@ -4021,15 +2237,13 @@ 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-resource-requests: + - '4999' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -4038,28 +2252,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse kusto pool create + - iot hub create Connection: - keep-alive ParameterSetName: - - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group - --workspace-name + - --resource-group --name --location User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfNGI0YzdkZTYtYjUwOS00MTM5LThjNzUtZTdmOGNmZGE1OTAzO3JlZ2lvbj1lYXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Running","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:44:43.4843903Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '509' + - '20' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:53:50 GMT + - Thu, 20 Oct 2022 01:01:14 GMT expires: - '-1' pragma: @@ -4085,28 +2298,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse kusto pool create + - iot hub create Connection: - keep-alive ParameterSetName: - - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group - --workspace-name + - --resource-group --name --location User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfNGI0YzdkZTYtYjUwOS00MTM5LThjNzUtZTdmOGNmZGE1OTAzO3JlZ2lvbj1lYXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/84c7102c-b6a5-423f-80d4-7c8d56065235","name":"84c7102c-b6a5-423f-80d4-7c8d56065235","status":"Succeeded","startTime":"2022-02-18T02:41:46.1072015Z","endTime":"2022-02-18T02:54:01.0378146Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreateSynapse","RootActivityId":"17b8e487-fc42-4419-b094-ad796a43c7c4","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '512' + - '20' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:54:19 GMT + - Thu, 20 Oct 2022 01:01:43 GMT expires: - '-1' pragma: @@ -4132,31 +2344,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse kusto pool create + - iot hub create Connection: - keep-alive ParameterSetName: - - --name --location --enable-purge --enable-streaming-ingest --sku --resource-group - --workspace-name + - --resource-group --name --location User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfNGI0YzdkZTYtYjUwOS00MTM5LThjNzUtZTdmOGNmZGE1OTAzO3JlZ2lvbj1lYXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003","name":"clitest000007/testkstpool000003","type":"Microsoft.Synapse/workspaces/kustoPools","etag":"\"2022-02-18T02:53:59.5379766Z\"","location":"East - US","sku":{"name":"Storage optimized","size":"Medium","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://testkstpool000003.clitest000007.kusto.azuresynapse.net","dataIngestionUri":"https://ingest-testkstpool000003.clitest000007.kusto.azuresynapse.net","optimizedAutoscale":null,"enableStreamingIngest":true,"languageExtensions":{"value":[]},"enablePurge":true,"workspaceUID":"db31c5da-e64d-4c9c-87f8-afaf843f1ebc","provisioningState":"Succeeded"}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '810' + - '20' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:54:20 GMT - etag: - - '"2022-02-18T02:53:59.5379766Z"' + - Thu, 20 Oct 2022 01:02:14 GMT expires: - '-1' pragma: @@ -4175,41 +2383,34 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "kind": "ReadWrite", "properties": {"softDeletePeriod": - "P1D"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - synapse kusto database create + - iot hub create Connection: - keep-alive - Content-Length: - - '86' - Content-Type: - - application/json ParameterSetName: - - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name + - --resource-group --name --location User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004?api-version=2021-06-01-preview + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfNGI0YzdkZTYtYjUwOS00MTM5LThjNzUtZTdmOGNmZGE1OTAzO3JlZ2lvbj1lYXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/Databases/testdtabase000004","name":"clitest000007/testkstpool000003/testdtabase000004","type":"Microsoft.Synapse/workspaces/kustoPools/Databases","location":"eastus","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","provisioningState":"Creating"}}' + string: '{"status":"Running"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/0edb6180-19f2-4524-8942-4f07944b5f60?api-version=2021-06-01-preview cache-control: - no-cache content-length: - - '431' + - '20' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:54:27 GMT + - Thu, 20 Oct 2022 01:02:44 GMT expires: - '-1' pragma: @@ -4218,13 +2419,15 @@ 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-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -4233,27 +2436,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse kusto database create + - iot hub create Connection: - keep-alive ParameterSetName: - - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name + - --resource-group --name --location User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/0edb6180-19f2-4524-8942-4f07944b5f60?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfNGI0YzdkZTYtYjUwOS00MTM5LThjNzUtZTdmOGNmZGE1OTAzO3JlZ2lvbj1lYXN0dXM=?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/0edb6180-19f2-4524-8942-4f07944b5f60","name":"0edb6180-19f2-4524-8942-4f07944b5f60","status":"Succeeded","startTime":"2022-02-18T02:54:28.5850617Z","endTime":"2022-02-18T02:54:30.0850635Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"5e259b6c-8d68-4fe9-961e-4ed6058a8ca0","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '506' + - '22' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:54:58 GMT + - Thu, 20 Oct 2022 01:03:14 GMT expires: - '-1' pragma: @@ -4279,28 +2482,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - synapse kusto database create + - iot hub create Connection: - keep-alive ParameterSetName: - - --database-name --kusto-pool-name --read-write-database --resource-group --workspace-name + - --resource-group --name --location User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Devices/IotHubs/testiothub000006?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/Databases/testdtabase000004","name":"clitest000007/testkstpool000003/testdtabase000004","type":"Microsoft.Synapse/workspaces/kustoPools/Databases","location":"East - US","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","statistics":{"size":0.0},"isFollowed":false,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Devices/IotHubs/testiothub000006","name":"testiothub000006","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"synapse-cli000001","etag":"AAAADHPVZ9I=","properties":{"locations":[{"location":"East + US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testiothub000006.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiothub000006","endpoint":"sb://iothub-ns-testiothub-22352583-d82b86c3e7.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-10-20T01:01:14.1333333Z"}}' headers: cache-control: - no-cache content-length: - - '478' + - '1660' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:54:58 GMT + - Thu, 20 Oct 2022 01:03:15 GMT expires: - '-1' pragma: @@ -4319,47 +2522,43 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"eventHubEndpoints": {"events": {"retentionTimeInDays": - 1, "partitionCount": 4}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": - "PT1H", "connectionString": "", "containerName": ""}}, "messagingEndpoints": - {"fileNotifications": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", - "maxDeliveryCount": 10}}, "enableFileUploadNotifications": false, "cloudToDevice": - {"maxDeliveryCount": 10, "defaultTtlAsIso8601": "PT1H", "feedback": {"lockDurationAsIso8601": - "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}}, "sku": {"name": "S1", - "capacity": 1}}' + body: '{"location": "eastus", "kind": "IotHub", "properties": {"iotHubResourceId": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Devices/IotHubs/testiothub000006", + "consumerGroup": "$Default", "sharedAccessPolicyName": "registryRead"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - iot hub create + - synapse kusto data-connection iot-hub create Connection: - keep-alive Content-Length: - - '603' + - '288' Content-Type: - application/json ParameterSetName: - - --resource-group --name --location + - --data-connection-name --database-name --kusto-pool-name --location --consumer-group + --iot-hub-resource-id --shared-access-policy-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Devices/IotHubs/testiothub000006?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004/dataConnections/dataConName000005?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Devices/IotHubs/testiothub000006","name":"testiothub000006","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"synapse-cli000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/Databases/testdtabase000004/DataConnections/dataConName000005","name":"clitest000007/testkstpool000003/testdtabase000004/dataConName000005","type":"Microsoft.Synapse/workspaces/kustoPools/Databases/DataConnections","location":"eastus","kind":"IotHub","properties":{"iotHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Devices/IotHubs/testiothub000006","consumerGroup":"$Default","sharedAccessPolicyName":"registryRead","provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfOGZhZDViOGYtNmMxMy00MWIxLWIyNmEtNGYyMWI0MDg0N2Y5O3JlZ2lvbj1lYXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143?api-version=2021-06-01-preview cache-control: - no-cache content-length: - - '1051' + - '697' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:55:03 GMT + - Thu, 20 Oct 2022 01:03:18 GMT expires: - '-1' pragma: @@ -4370,8 +2569,8 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '4999' + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 201 message: Created @@ -4383,27 +2582,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub create + - synapse kusto data-connection iot-hub create Connection: - keep-alive ParameterSetName: - - --resource-group --name --location + - --data-connection-name --database-name --kusto-pool-name --location --consumer-group + --iot-hub-resource-id --shared-access-policy-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfOGZhZDViOGYtNmMxMy00MWIxLWIyNmEtNGYyMWI0MDg0N2Y5O3JlZ2lvbj1lYXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143?api-version=2021-06-01-preview response: body: - string: '{"status":"Running"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143","name":"f4d69a19-9f03-4b48-912e-fe9993ace143","status":"Running","startTime":"2022-10-20T01:03:18.9732303Z","endTime":"2022-10-20T01:03:18.9732303Z","percentComplete":0.5,"properties":{}}' headers: cache-control: - no-cache content-length: - - '20' + - '355' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:55:33 GMT + - Thu, 20 Oct 2022 01:03:18 GMT expires: - '-1' pragma: @@ -4429,27 +2629,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub create + - synapse kusto data-connection iot-hub create Connection: - keep-alive ParameterSetName: - - --resource-group --name --location + - --data-connection-name --database-name --kusto-pool-name --location --consumer-group + --iot-hub-resource-id --shared-access-policy-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfOGZhZDViOGYtNmMxMy00MWIxLWIyNmEtNGYyMWI0MDg0N2Y5O3JlZ2lvbj1lYXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143?api-version=2021-06-01-preview response: body: - string: '{"status":"Running"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143","name":"f4d69a19-9f03-4b48-912e-fe9993ace143","status":"Running","startTime":"2022-10-20T01:03:18.9732303Z","endTime":"2022-10-20T01:03:18.9732303Z","percentComplete":0.5,"properties":{}}' headers: cache-control: - no-cache content-length: - - '20' + - '355' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:56:03 GMT + - Thu, 20 Oct 2022 01:03:48 GMT expires: - '-1' pragma: @@ -4475,27 +2676,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub create + - synapse kusto data-connection iot-hub create Connection: - keep-alive ParameterSetName: - - --resource-group --name --location + - --data-connection-name --database-name --kusto-pool-name --location --consumer-group + --iot-hub-resource-id --shared-access-policy-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfOGZhZDViOGYtNmMxMy00MWIxLWIyNmEtNGYyMWI0MDg0N2Y5O3JlZ2lvbj1lYXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143?api-version=2021-06-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143","name":"f4d69a19-9f03-4b48-912e-fe9993ace143","status":"Running","startTime":"2022-10-20T01:03:18.9732303Z","endTime":"2022-10-20T01:03:18.9732303Z","percentComplete":0.5,"properties":{}}' headers: cache-control: - no-cache content-length: - - '22' + - '355' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:56:34 GMT + - Thu, 20 Oct 2022 01:04:19 GMT expires: - '-1' pragma: @@ -4521,28 +2723,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot hub create + - synapse kusto data-connection iot-hub create Connection: - keep-alive ParameterSetName: - - --resource-group --name --location + - --data-connection-name --database-name --kusto-pool-name --location --consumer-group + --iot-hub-resource-id --shared-access-policy-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Devices/IotHubs/testiothub000006?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Devices/IotHubs/testiothub000006","name":"testiothub000006","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"synapse-cli000001","etag":"AAAADGJL8Ao=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"testiothub000006.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"testiothub000006","endpoint":"sb://iothub-ns-testiothub-17429175-b410c2026c.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-18T02:55:02.9433333Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143","name":"f4d69a19-9f03-4b48-912e-fe9993ace143","status":"Running","startTime":"2022-10-20T01:03:18.9732303Z","endTime":"2022-10-20T01:03:18.9732303Z","percentComplete":0.5,"properties":{}}' headers: cache-control: - no-cache content-length: - - '1632' + - '355' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:56:34 GMT + - Thu, 20 Oct 2022 01:04:49 GMT expires: - '-1' pragma: @@ -4561,43 +2763,35 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "kind": "IotHub", "properties": {"iotHubResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Devices/IotHubs/testiothub000006", - "consumerGroup": "$Default", "sharedAccessPolicyName": "registryRead"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - synapse kusto data-connection iot-hub create Connection: - keep-alive - Content-Length: - - '288' - Content-Type: - - application/json ParameterSetName: - --data-connection-name --database-name --kusto-pool-name --location --consumer-group --iot-hub-resource-id --shared-access-policy-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004/dataConnections/dataConName000005?api-version=2021-06-01-preview + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/Databases/testdtabase000004/DataConnections/dataConName000005","name":"clitest000007/testkstpool000003/testdtabase000004/dataConName000005","type":"Microsoft.Synapse/workspaces/kustoPools/Databases/DataConnections","location":"eastus","kind":"IotHub","properties":{"iotHubResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Devices/IotHubs/testiothub000006","consumerGroup":"$Default","sharedAccessPolicyName":"registryRead","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143","name":"f4d69a19-9f03-4b48-912e-fe9993ace143","status":"Running","startTime":"2022-10-20T01:03:18.9732303Z","endTime":"2022-10-20T01:03:18.9732303Z","percentComplete":0.5,"properties":{}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/0302000e-2b83-4795-8a0b-280484b570d4?api-version=2021-06-01-preview cache-control: - no-cache content-length: - - '697' + - '355' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:56:37 GMT + - Thu, 20 Oct 2022 01:05:19 GMT expires: - '-1' pragma: @@ -4606,13 +2800,15 @@ 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-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -4628,12 +2824,12 @@ interactions: - --data-connection-name --database-name --kusto-pool-name --location --consumer-group --iot-hub-resource-id --shared-access-policy-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/0302000e-2b83-4795-8a0b-280484b570d4?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/0302000e-2b83-4795-8a0b-280484b570d4","name":"0302000e-2b83-4795-8a0b-280484b570d4","status":"Succeeded","startTime":"2022-02-18T02:56:37.4616629Z","endTime":"2022-02-18T02:57:02.8056317Z","percentComplete":1.0,"properties":{}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/eastus/kustoPoolOperationResults/f4d69a19-9f03-4b48-912e-fe9993ace143","name":"f4d69a19-9f03-4b48-912e-fe9993ace143","status":"Succeeded","startTime":"2022-10-20T01:03:18.9732303Z","endTime":"2022-10-20T01:05:24.0552074Z","percentComplete":1.0,"properties":{}}' headers: cache-control: - no-cache @@ -4642,7 +2838,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:57:06 GMT + - Thu, 20 Oct 2022 01:05:49 GMT expires: - '-1' pragma: @@ -4675,7 +2871,7 @@ interactions: - --data-connection-name --database-name --kusto-pool-name --location --consumer-group --iot-hub-resource-id --shared-access-policy-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004/dataConnections/dataConName000005?api-version=2021-06-01-preview response: @@ -4690,7 +2886,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:57:07 GMT + - Thu, 20 Oct 2022 01:05:50 GMT expires: - '-1' pragma: @@ -4723,7 +2919,7 @@ interactions: - --data-connection-name --database-name --kusto-pool-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004/dataConnections/dataConName000005?api-version=2021-06-01-preview response: @@ -4738,7 +2934,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:57:09 GMT + - Thu, 20 Oct 2022 01:05:52 GMT expires: - '-1' pragma: @@ -4770,7 +2966,7 @@ interactions: ParameterSetName: - --database-name --kusto-pool-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004/dataConnections?api-version=2021-06-01-preview response: @@ -4785,7 +2981,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:57:10 GMT + - Thu, 20 Oct 2022 01:05:52 GMT expires: - '-1' pragma: @@ -4824,7 +3020,7 @@ interactions: - --data-connection-name --database-name --kusto-pool-name --location --consumer-group --iot-hub-resource-id --shared-access-policy-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004/dataConnections/dataConName000005?api-version=2021-06-01-preview response: @@ -4834,7 +3030,7 @@ interactions: headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East - US/kustoPoolOperationResults/aedffbd9-43ce-40db-a6eb-e97662553e2f?api-version=2021-06-01-preview + US/kustoPoolOperationResults/f6968052-bf94-4e75-80fc-2ceb2ff3ce3d?api-version=2021-06-01-preview cache-control: - no-cache content-length: @@ -4842,11 +3038,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:57:12 GMT + - Thu, 20 Oct 2022 01:05:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East%20US/kustoPoolOperationResults/aedffbd9-43ce-40db-a6eb-e97662553e2f?api-version=2021-06-01-preview&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East%20US/kustoPoolOperationResults/f6968052-bf94-4e75-80fc-2ceb2ff3ce3d?api-version=2021-06-01-preview&operationResultResponseType=Location pragma: - no-cache server: @@ -4875,13 +3071,61 @@ interactions: - --data-connection-name --database-name --kusto-pool-name --location --consumer-group --iot-hub-resource-id --shared-access-policy-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East%20US/kustoPoolOperationResults/f6968052-bf94-4e75-80fc-2ceb2ff3ce3d?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East + US/kustoPoolOperationResults/f6968052-bf94-4e75-80fc-2ceb2ff3ce3d","name":"f6968052-bf94-4e75-80fc-2ceb2ff3ce3d","status":"Running","startTime":"2022-10-20T01:05:55.4462413Z","endTime":"2022-10-20T01:05:55.4462413Z","percentComplete":0.5,"properties":{}}' + headers: + cache-control: + - no-cache + content-length: + - '356' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Oct 2022 01:05:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto data-connection iot-hub update + Connection: + - keep-alive + ParameterSetName: + - --data-connection-name --database-name --kusto-pool-name --location --consumer-group + --iot-hub-resource-id --shared-access-policy-name --resource-group --workspace-name + User-Agent: + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East%20US/kustoPoolOperationResults/aedffbd9-43ce-40db-a6eb-e97662553e2f?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East%20US/kustoPoolOperationResults/f6968052-bf94-4e75-80fc-2ceb2ff3ce3d?api-version=2021-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East - US/kustoPoolOperationResults/aedffbd9-43ce-40db-a6eb-e97662553e2f","name":"aedffbd9-43ce-40db-a6eb-e97662553e2f","status":"Succeeded","startTime":"2022-02-18T02:57:12.5557332Z","endTime":"2022-02-18T02:57:13.1026906Z","percentComplete":1.0,"properties":{}}' + US/kustoPoolOperationResults/f6968052-bf94-4e75-80fc-2ceb2ff3ce3d","name":"f6968052-bf94-4e75-80fc-2ceb2ff3ce3d","status":"Succeeded","startTime":"2022-10-20T01:05:55.4462413Z","endTime":"2022-10-20T01:05:57.0578152Z","percentComplete":1.0,"properties":{}}' headers: cache-control: - no-cache @@ -4890,7 +3134,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:57:42 GMT + - Thu, 20 Oct 2022 01:06:25 GMT expires: - '-1' pragma: @@ -4923,7 +3167,7 @@ interactions: - --data-connection-name --database-name --kusto-pool-name --location --consumer-group --iot-hub-resource-id --shared-access-policy-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004/dataConnections/dataConName000005?api-version=2021-06-01-preview response: @@ -4938,7 +3182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:57:43 GMT + - Thu, 20 Oct 2022 01:06:26 GMT expires: - '-1' pragma: @@ -4973,7 +3217,7 @@ interactions: - -y --data-connection-name --database-name --kusto-pool-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004/dataConnections/dataConName000005?api-version=2021-06-01-preview response: @@ -4982,17 +3226,17 @@ interactions: headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East - US/kustoPoolOperationResults/94492938-26a7-4d1e-82d8-3dcc10f02ccb?api-version=2021-06-01-preview + US/kustoPoolOperationResults/c711c9e3-a09a-480c-8955-d25869b5f23b?api-version=2021-06-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 18 Feb 2022 02:57:44 GMT + - Thu, 20 Oct 2022 01:06:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East%20US/kustoPoolOperationResults/94492938-26a7-4d1e-82d8-3dcc10f02ccb?api-version=2021-06-01-preview&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East%20US/kustoPoolOperationResults/c711c9e3-a09a-480c-8955-d25869b5f23b?api-version=2021-06-01-preview&operationResultResponseType=Location pragma: - no-cache server: @@ -5021,22 +3265,70 @@ interactions: - -y --data-connection-name --database-name --kusto-pool-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East%20US/kustoPoolOperationResults/c711c9e3-a09a-480c-8955-d25869b5f23b?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East + US/kustoPoolOperationResults/c711c9e3-a09a-480c-8955-d25869b5f23b","name":"c711c9e3-a09a-480c-8955-d25869b5f23b","status":"Running","startTime":"2022-10-20T01:06:29.1831175Z","endTime":"2022-10-20T01:06:29.1831175Z","percentComplete":0.5,"properties":{"OperationKind":"DmServiceDataObtainerDrop","RootActivityId":"bd59c099-0650-4151-8e65-31e270a2872b","provisioningState":"Running","OperationState":"InProgress"}}' + headers: + cache-control: + - no-cache + content-length: + - '515' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 20 Oct 2022 01:06:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - synapse kusto data-connection delete + Connection: + - keep-alive + ParameterSetName: + - -y --data-connection-name --database-name --kusto-pool-name --resource-group + --workspace-name + User-Agent: + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East%20US/kustoPoolOperationResults/94492938-26a7-4d1e-82d8-3dcc10f02ccb?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East%20US/kustoPoolOperationResults/c711c9e3-a09a-480c-8955-d25869b5f23b?api-version=2021-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Synapse/locations/East - US/kustoPoolOperationResults/94492938-26a7-4d1e-82d8-3dcc10f02ccb","name":"94492938-26a7-4d1e-82d8-3dcc10f02ccb","status":"Succeeded","startTime":"2022-02-18T02:57:45.4938254Z","endTime":"2022-02-18T02:57:51.4938433Z","percentComplete":1.0,"properties":{"OperationKind":"DmServiceDataObtainerDrop","RootActivityId":"b461e120-b8cc-4de6-bbbf-4244e9829844","provisioningState":"Succeeded","OperationState":"Completed"}}' + US/kustoPoolOperationResults/c711c9e3-a09a-480c-8955-d25869b5f23b","name":"c711c9e3-a09a-480c-8955-d25869b5f23b","status":"Succeeded","startTime":"2022-10-20T01:06:29.1831175Z","endTime":"2022-10-20T01:06:29.714371Z","percentComplete":1.0,"properties":{"OperationKind":"DmServiceDataObtainerDrop","RootActivityId":"bd59c099-0650-4151-8e65-31e270a2872b","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache content-length: - - '518' + - '517' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:58:14 GMT + - Thu, 20 Oct 2022 01:06:59 GMT expires: - '-1' pragma: @@ -5069,7 +3361,7 @@ interactions: - --data-connection-name --database-name --kusto-pool-name --resource-group --workspace-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-synapse/2.1.0b2 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/synapse-cli000001/providers/Microsoft.Synapse/workspaces/clitest000007/kustoPools/testkstpool000003/databases/testdtabase000004/dataConnections/dataConName000005?api-version=2021-06-01-preview response: @@ -5085,7 +3377,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:58:16 GMT + - Thu, 20 Oct 2022 01:07:00 GMT expires: - '-1' pragma: From a3522445b8cae2e9c707fc0da0127b8380ebe850 Mon Sep 17 00:00:00 2001 From: Victoria Litvinova Date: Thu, 20 Oct 2022 09:35:30 -0700 Subject: [PATCH 06/10] update api version for iot security --- .../security/tests/latest/recordings/test_security_iot.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_iot.yaml b/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_iot.yaml index 78fedc9412f..5e015a99f9a 100644 --- a/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_iot.yaml +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_iot.yaml @@ -68,7 +68,7 @@ interactions: User-Agent: - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002?api-version=2022-04-30-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002","name":"azurecli-hub000002","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1}}' @@ -298,7 +298,7 @@ interactions: User-Agent: - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002?api-version=2021-07-02 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002?api-version=2022-04-30-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002","name":"azurecli-hub000002","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGJLvSA=","properties":{"locations":[{"location":"East From 6a4261e694c5a712836fccafb3c6f95be41ebf32 Mon Sep 17 00:00:00 2001 From: Victoria Litvinova Date: Fri, 4 Nov 2022 10:13:25 -0700 Subject: [PATCH 07/10] du fix --- ...st_private_link_endpoint_deviceupdate.yaml | 514 ++++++++++-------- .../latest/test_private_endpoint_commands.py | 10 +- 2 files changed, 303 insertions(+), 221 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_endpoint_deviceupdate.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_endpoint_deviceupdate.yaml index 9d8f98c582a..0516c9ae41a 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_endpoint_deviceupdate.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_endpoint_deviceupdate.yaml @@ -13,22 +13,21 @@ interactions: ParameterSetName: - --name -o User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_deviceupdate_private_endpoint000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001","name":"test_deviceupdate_private_endpoint000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-08-26T01:24:08Z","Env":"NonProd"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001","name":"test_deviceupdate_private_endpoint000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-04T17:07:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '375' + - '359' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:24:13 GMT + - Fri, 04 Nov 2022 17:07:48 GMT expires: - '-1' pragma: @@ -51,7 +50,7 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot device-update account create + - iot du account create Connection: - keep-alive Content-Length: @@ -61,32 +60,32 @@ interactions: ParameterSetName: - --account --resource-group User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-mgmt-deviceupdate/1.0.0b1 Python/3.10.6 - (Windows-10-10.0.22000-SP0) IoTPlatformCliExtension/0.17.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-deviceupdate/1.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + IoTPlatformCliExtension/0.18.1 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002?api-version=2022-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002?api-version=2022-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002","name":"cli-test-adu-000002","type":"microsoft.deviceupdate/accounts","location":"westus2","systemData":{"createdBy":"darkoa@microsoft.com","createdByType":"User","createdAt":"2022-08-26T01:24:14.8988708Z","lastModifiedBy":"darkoa@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-26T01:24:14.8988708Z"},"properties":{"publicNetworkAccess":"Enabled","sku":"Standard","provisioningState":"Accepted"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002","name":"cli-test-adu-000002","type":"microsoft.deviceupdate/accounts","location":"westus2","systemData":{"createdBy":"vilit@microsoft.com","createdByType":"User","createdAt":"2022-11-04T17:07:49.8307517Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:07:49.8307517Z"},"properties":{"publicNetworkAccess":"Enabled","sku":"Standard","provisioningState":"Accepted"}}' headers: api-supported-versions: - 2020-03-01-preview, 2022-04-01-preview, 2022-10-01 azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/cc70df3b-7d00-41b7-84c5-48d7faec6319*EBA9BF07B6EA09EC1B4696F7E162FFE869FA5A6ACFC49388D90E7CCABF97EA2C?api-version=2022-04-01-preview + - https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A?api-version=2022-10-01 cache-control: - no-cache content-length: - - '596' + - '594' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:24:14 GMT + - Fri, 04 Nov 2022 17:07:50 GMT etag: - - '"d400a959-0000-0800-0000-630820bf0000"' + - '"1c0041f7-0000-0800-0000-636546e60000"' expires: - '-1' mise-correlation-id: - - 70b801c7-6298-4740-95b4-b9e3d8c72289 + - 4adce935-8fed-4abc-87c6-75dc90922683 pragma: - no-cache strict-transport-security: @@ -108,19 +107,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot device-update account create + - iot du account create Connection: - keep-alive ParameterSetName: - --account --resource-group User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-mgmt-deviceupdate/1.0.0b1 Python/3.10.6 - (Windows-10-10.0.22000-SP0) IoTPlatformCliExtension/0.17.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-deviceupdate/1.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + IoTPlatformCliExtension/0.18.1 method: GET - uri: https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/cc70df3b-7d00-41b7-84c5-48d7faec6319*EBA9BF07B6EA09EC1B4696F7E162FFE869FA5A6ACFC49388D90E7CCABF97EA2C?api-version=2022-04-01-preview + uri: https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A?api-version=2022-10-01 response: body: - string: '{"id":"/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/cc70df3b-7d00-41b7-84c5-48d7faec6319*EBA9BF07B6EA09EC1B4696F7E162FFE869FA5A6ACFC49388D90E7CCABF97EA2C","name":"cc70df3b-7d00-41b7-84c5-48d7faec6319*EBA9BF07B6EA09EC1B4696F7E162FFE869FA5A6ACFC49388D90E7CCABF97EA2C","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002","status":"Accepted","startTime":"2022-08-26T01:24:15.3356832Z"}' + string: '{"id":"/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A","name":"282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002","status":"Accepted","startTime":"2022-11-04T17:07:50.4321526Z"}' headers: cache-control: - no-cache @@ -129,9 +128,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:24:44 GMT + - Fri, 04 Nov 2022 17:07:50 GMT etag: - - '"15014cbe-0000-0800-0000-630820bf0000"' + - '"e500ef67-0000-0800-0000-636546e60000"' expires: - '-1' pragma: @@ -155,19 +154,19 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot device-update account create + - iot du account create Connection: - keep-alive ParameterSetName: - --account --resource-group User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-mgmt-deviceupdate/1.0.0b1 Python/3.10.6 - (Windows-10-10.0.22000-SP0) IoTPlatformCliExtension/0.17.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-deviceupdate/1.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + IoTPlatformCliExtension/0.18.1 method: GET - uri: https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/cc70df3b-7d00-41b7-84c5-48d7faec6319*EBA9BF07B6EA09EC1B4696F7E162FFE869FA5A6ACFC49388D90E7CCABF97EA2C?api-version=2022-04-01-preview + uri: https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A?api-version=2022-10-01 response: body: - string: '{"id":"/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/cc70df3b-7d00-41b7-84c5-48d7faec6319*EBA9BF07B6EA09EC1B4696F7E162FFE869FA5A6ACFC49388D90E7CCABF97EA2C","name":"cc70df3b-7d00-41b7-84c5-48d7faec6319*EBA9BF07B6EA09EC1B4696F7E162FFE869FA5A6ACFC49388D90E7CCABF97EA2C","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002","status":"Accepted","startTime":"2022-08-26T01:24:15.3356832Z"}' + string: '{"id":"/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A","name":"282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002","status":"Accepted","startTime":"2022-11-04T17:07:50.4321526Z"}' headers: cache-control: - no-cache @@ -176,9 +175,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:25:15 GMT + - Fri, 04 Nov 2022 17:08:20 GMT etag: - - '"15014cbe-0000-0800-0000-630820bf0000"' + - '"e500ef67-0000-0800-0000-636546e60000"' expires: - '-1' pragma: @@ -202,19 +201,66 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot device-update account create + - iot du account create Connection: - keep-alive ParameterSetName: - --account --resource-group User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-mgmt-deviceupdate/1.0.0b1 Python/3.10.6 - (Windows-10-10.0.22000-SP0) IoTPlatformCliExtension/0.17.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-deviceupdate/1.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + IoTPlatformCliExtension/0.18.1 method: GET - uri: https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/cc70df3b-7d00-41b7-84c5-48d7faec6319*EBA9BF07B6EA09EC1B4696F7E162FFE869FA5A6ACFC49388D90E7CCABF97EA2C?api-version=2022-04-01-preview + uri: https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A?api-version=2022-10-01 response: body: - string: '{"id":"/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/cc70df3b-7d00-41b7-84c5-48d7faec6319*EBA9BF07B6EA09EC1B4696F7E162FFE869FA5A6ACFC49388D90E7CCABF97EA2C","name":"cc70df3b-7d00-41b7-84c5-48d7faec6319*EBA9BF07B6EA09EC1B4696F7E162FFE869FA5A6ACFC49388D90E7CCABF97EA2C","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002","status":"Succeeded","startTime":"2022-08-26T01:24:15.3356832Z","properties":null}' + string: '{"id":"/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A","name":"282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002","status":"Accepted","startTime":"2022-11-04T17:07:50.4321526Z"}' + headers: + cache-control: + - no-cache + content-length: + - '539' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:08:50 GMT + etag: + - '"e500ef67-0000-0800-0000-636546e60000"' + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot du account create + Connection: + - keep-alive + ParameterSetName: + - --account --resource-group + User-Agent: + - AZURECLI/2.41.0 azsdk-python-mgmt-deviceupdate/1.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + IoTPlatformCliExtension/0.18.1 + method: GET + uri: https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A?api-version=2022-10-01 + response: + body: + string: '{"id":"/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A","name":"282f769c-e0c8-48ba-ac25-c0f2b1842e7e*D58DE0918B10DA2E762D0DAFD6540832763DF724FAADD31F1DAA2EACE4072C4A","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002","status":"Succeeded","startTime":"2022-11-04T17:07:50.4321526Z","properties":null}' headers: cache-control: - no-cache @@ -223,9 +269,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:25:45 GMT + - Fri, 04 Nov 2022 17:09:20 GMT etag: - - '"fd013da1-0000-0700-0000-630821010000"' + - '"0c003718-0000-4d00-0000-636547290000"' expires: - '-1' pragma: @@ -249,30 +295,30 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - iot device-update account create + - iot du account create Connection: - keep-alive ParameterSetName: - --account --resource-group User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-mgmt-deviceupdate/1.0.0b1 Python/3.10.6 - (Windows-10-10.0.22000-SP0) IoTPlatformCliExtension/0.17.0 + - AZURECLI/2.41.0 azsdk-python-mgmt-deviceupdate/1.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + IoTPlatformCliExtension/0.18.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002?api-version=2022-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002?api-version=2022-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002","name":"cli-test-adu-000002","type":"microsoft.deviceupdate/accounts","location":"westus2","systemData":{"createdBy":"darkoa@microsoft.com","createdByType":"User","createdAt":"2022-08-26T01:24:14.8988708Z","lastModifiedBy":"darkoa@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-26T01:24:14.8988708Z"},"properties":{"provisioningState":"Succeeded","hostName":"cli-test-adu-000002.api.adu.microsoft.com","locations":[{"name":"westus2","role":"Primary"},{"name":"WestCentralUS","role":"Failover"}],"sku":"Standard","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002","name":"cli-test-adu-000002","type":"microsoft.deviceupdate/accounts","location":"westus2","systemData":{"createdBy":"vilit@microsoft.com","createdByType":"User","createdAt":"2022-11-04T17:07:49.8307517Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:07:49.8307517Z"},"properties":{"provisioningState":"Succeeded","hostName":"cli-test-adu-000002.api.adu.microsoft.com","locations":[{"name":"westus2","role":"Primary"},{"name":"WestCentralUS","role":"Failover"}],"sku":"Standard","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache content-length: - - '745' + - '743' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:25:45 GMT + - Fri, 04 Nov 2022 17:09:20 GMT etag: - - '"d400ed59-0000-0800-0000-630820e50000"' + - '"1c0054f7-0000-0800-0000-6365470f0000"' expires: - '-1' pragma: @@ -304,22 +350,21 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_deviceupdate_private_endpoint000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001","name":"test_deviceupdate_private_endpoint000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-08-26T01:24:08Z","Env":"NonProd"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001","name":"test_deviceupdate_private_endpoint000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-04T17:07:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '375' + - '359' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:25:45 GMT + - Fri, 04 Nov 2022 17:09:22 GMT expires: - '-1' pragma: @@ -354,22 +399,21 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"cli-test-adu-pe-vnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003\",\r\n - \ \"etag\": \"W/\\\"8310bc5b-01a9-4291-ac1a-9637d44d384b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e617c4be-031c-4c49-a47a-480e7d27404a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"3d2b4dc4-198e-4c5e-84d9-e352dd935124\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"793161dd-6195-4110-8c72-5477b4386080\",\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\": \"cli-test-adu-pe-subnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004\",\r\n - \ \"etag\": \"W/\\\"8310bc5b-01a9-4291-ac1a-9637d44d384b\\\"\",\r\n + \ \"etag\": \"W/\\\"e617c4be-031c-4c49-a47a-480e7d27404a\\\"\",\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\": @@ -380,7 +424,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7fc00226-ec3d-45fd-acaf-a7d74e35a03f?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bc1ab7bc-9132-4de8-b9bb-fea1c35fd506?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -388,7 +432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:25:46 GMT + - Fri, 04 Nov 2022 17:09:23 GMT expires: - '-1' pragma: @@ -401,7 +445,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fa6da251-6fa0-4a12-9bcc-a9374f688bf5 + - 1f6c47c4-8b51-45ce-b768-4f8428e4d40e x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -421,10 +465,58 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bc1ab7bc-9132-4de8-b9bb-fea1c35fd506?api-version=2022-01-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: + - Fri, 04 Nov 2022 17:09:23 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: + - 036de104-3773-457f-837b-88f5fc187337 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -n --subnet-name + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7fc00226-ec3d-45fd-acaf-a7d74e35a03f?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bc1ab7bc-9132-4de8-b9bb-fea1c35fd506?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -436,7 +528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:25:49 GMT + - Fri, 04 Nov 2022 17:09:33 GMT expires: - '-1' pragma: @@ -453,7 +545,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 10852d32-fe3c-4f4e-8ab1-20cd3d210d0f + - 615a1e4f-837c-4a4c-9f1e-3046bbdafa19 status: code: 200 message: OK @@ -471,22 +563,21 @@ interactions: ParameterSetName: - -g -n --subnet-name User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"cli-test-adu-pe-vnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003\",\r\n - \ \"etag\": \"W/\\\"ddd838a9-c964-430c-93dd-010dc4def0bd\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ce290c4e-8db4-43bc-b077-91bb4f752636\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"3d2b4dc4-198e-4c5e-84d9-e352dd935124\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"793161dd-6195-4110-8c72-5477b4386080\",\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\": \"cli-test-adu-pe-subnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004\",\r\n - \ \"etag\": \"W/\\\"ddd838a9-c964-430c-93dd-010dc4def0bd\\\"\",\r\n + \ \"etag\": \"W/\\\"ce290c4e-8db4-43bc-b077-91bb4f752636\\\"\",\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\": @@ -501,9 +592,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:25:49 GMT + - Fri, 04 Nov 2022 17:09:33 GMT etag: - - W/"ddd838a9-c964-430c-93dd-010dc4def0bd" + - W/"ce290c4e-8db4-43bc-b077-91bb4f752636" expires: - '-1' pragma: @@ -520,7 +611,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b2e64a23-d181-42d4-ba7f-2dfe95e75d4f + - 0ab670f3-916a-4825-8177-0c22748a4b58 status: code: 200 message: OK @@ -538,14 +629,13 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"cli-test-adu-pe-subnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004\",\r\n - \ \"etag\": \"W/\\\"ddd838a9-c964-430c-93dd-010dc4def0bd\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"ce290c4e-8db4-43bc-b077-91bb4f752636\\\"\",\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\": @@ -558,9 +648,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:25:50 GMT + - Fri, 04 Nov 2022 17:09:34 GMT etag: - - W/"ddd838a9-c964-430c-93dd-010dc4def0bd" + - W/"ce290c4e-8db4-43bc-b077-91bb4f752636" expires: - '-1' pragma: @@ -577,7 +667,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dd68dd6e-3264-4e26-b67e-a48d9cd849cb + - 3831f771-d6ce-4a72-8f1f-71f616be8d44 status: code: 200 message: OK @@ -602,21 +692,22 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"cli-test-adu-pe-subnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004\",\r\n - \ \"etag\": \"W/\\\"bd60e4bc-b810-4feb-bfd2-7a4813f4c5b7\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"89f7e572-831d-460a-8e90-4e719cb67de5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: + azure-asyncnotification: + - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/eff44b3d-be5c-4372-a5d7-d678d42fc17d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/83416b49-b23e-44ee-b56d-a407a4f6c7b7?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -624,7 +715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:25:49 GMT + - Fri, 04 Nov 2022 17:09:35 GMT expires: - '-1' pragma: @@ -641,9 +732,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3941b32d-0863-4827-996c-18b8d4b98473 + - 4f249a7f-080f-45d9-8ce8-920c7e3031ab x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -661,10 +752,9 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/eff44b3d-be5c-4372-a5d7-d678d42fc17d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/83416b49-b23e-44ee-b56d-a407a4f6c7b7?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -676,7 +766,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:26:20 GMT + - Fri, 04 Nov 2022 17:09:35 GMT expires: - '-1' pragma: @@ -693,7 +783,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 48054a70-b574-4daa-aec7-4b7b3952372e + - d34d0894-5746-4a22-8502-89299be176c5 status: code: 200 message: OK @@ -711,14 +801,13 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"cli-test-adu-pe-subnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004\",\r\n - \ \"etag\": \"W/\\\"bd60e4bc-b810-4feb-bfd2-7a4813f4c5b7\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"89f7e572-831d-460a-8e90-4e719cb67de5\\\"\",\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\": @@ -731,9 +820,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:26:20 GMT + - Fri, 04 Nov 2022 17:09:35 GMT etag: - - W/"bd60e4bc-b810-4feb-bfd2-7a4813f4c5b7" + - W/"89f7e572-831d-460a-8e90-4e719cb67de5" expires: - '-1' pragma: @@ -750,7 +839,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - caa42b9d-9110-4edd-a6be-e84a913e45e2 + - a7871939-bf31-4fa9-a2a7-adfda162c08a status: code: 200 message: OK @@ -768,7 +857,7 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateLinkResources?api-version=2020-03-01-preview response: @@ -784,11 +873,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:26:20 GMT + - Fri, 04 Nov 2022 17:09:36 GMT expires: - '-1' mise-correlation-id: - - f7c355e7-c22d-4fc2-b077-09d33ac0687d + - 815e3d6f-b7a9-463d-8189-3bf31dfc5617 pragma: - no-cache strict-transport-security: @@ -819,22 +908,21 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --connection-name --group-id --manual-request User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_deviceupdate_private_endpoint000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001","name":"test_deviceupdate_private_endpoint000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-08-26T01:24:08Z","Env":"NonProd"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001","name":"test_deviceupdate_private_endpoint000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2022-11-04T17:07:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '375' + - '359' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:26:21 GMT + - Fri, 04 Nov 2022 17:09:35 GMT expires: - '-1' pragma: @@ -850,7 +938,7 @@ interactions: message: OK - request: body: '{"location": "westus2", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004", - "properties": {"privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies": + "properties": {"privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}}, "manualPrivateLinkServiceConnections": [{"name": "cli-test-adu-pec-000006", "properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002", "groupIds": ["DeviceUpdate"]}}]}}' @@ -864,27 +952,26 @@ interactions: Connection: - keep-alive Content-Length: - - '706' + - '707' Content-Type: - application/json ParameterSetName: - -g -n --vnet-name --subnet --private-connection-resource-id --connection-name --group-id --manual-request User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"cli-test-adu-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005\",\r\n - \ \"etag\": \"W/\\\"e0233de0-11a2-4756-a006-c7afd7485d92\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8c2f6647-f52a-42b0-ad23-6a35593002bf\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"2a91c8c6-081d-4ca8-8525-ec5da1d7fb16\",\r\n \"privateLinkServiceConnections\": + \"d647c659-432c-4eb2-bd15-fcc582ca36d7\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"cli-test-adu-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005/manualPrivateLinkServiceConnections/cli-test-adu-pec-000006\",\r\n - \ \"etag\": \"W/\\\"e0233de0-11a2-4756-a006-c7afd7485d92\\\"\",\r\n + \ \"etag\": \"W/\\\"8c2f6647-f52a-42b0-ad23-6a35593002bf\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002\",\r\n \ \"groupIds\": [\r\n \"DeviceUpdate\"\r\n ],\r\n @@ -894,13 +981,13 @@ interactions: \ }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004\"\r\n \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/networkInterfaces/cli-test-adu-pe-000005.nic.af35b8a8-283c-4810-b0c5-7197a733ca0f\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/networkInterfaces/cli-test-adu-pe-000005.nic.593266d7-fc44-4a95-9924-78f31eddcc17\"\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/8b5e5ae1-2dce-444f-924d-4cd2ebe924f9?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b9096275-1027-4819-a3f4-61aa419e234c?api-version=2022-01-01 cache-control: - no-cache content-length: @@ -908,7 +995,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:26:22 GMT + - Fri, 04 Nov 2022 17:09:39 GMT expires: - '-1' pragma: @@ -921,7 +1008,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 23b80eba-8811-4cf3-b132-64e7f84d8e5c + - f54fd8d1-a41f-40e1-a92e-bf48be27003f x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -942,10 +1029,9 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --connection-name --group-id --manual-request User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8b5e5ae1-2dce-444f-924d-4cd2ebe924f9?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b9096275-1027-4819-a3f4-61aa419e234c?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -957,7 +1043,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:26:32 GMT + - Fri, 04 Nov 2022 17:09:39 GMT expires: - '-1' pragma: @@ -974,7 +1060,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4c2a9ed5-d023-47e4-89b6-96cb7f92f5e8 + - cf03f7ba-74bc-4dff-89f4-9fc8cd73293b status: code: 200 message: OK @@ -993,10 +1079,9 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --connection-name --group-id --manual-request User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8b5e5ae1-2dce-444f-924d-4cd2ebe924f9?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b9096275-1027-4819-a3f4-61aa419e234c?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1008,7 +1093,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:26:42 GMT + - Fri, 04 Nov 2022 17:09:49 GMT expires: - '-1' pragma: @@ -1025,7 +1110,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6f58a159-3f05-4133-8178-330a72ea48f6 + - 5252ad18-0ffa-4b66-8fa6-5183d437b693 status: code: 200 message: OK @@ -1044,10 +1129,9 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --connection-name --group-id --manual-request User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8b5e5ae1-2dce-444f-924d-4cd2ebe924f9?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b9096275-1027-4819-a3f4-61aa419e234c?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1059,7 +1143,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:27:02 GMT + - Fri, 04 Nov 2022 17:10:09 GMT expires: - '-1' pragma: @@ -1076,7 +1160,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f078df86-2b27-41ca-9375-1c019837152b + - 103794c2-6246-4221-93d9-aa0388f1f9bd status: code: 200 message: OK @@ -1095,10 +1179,9 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --connection-name --group-id --manual-request User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8b5e5ae1-2dce-444f-924d-4cd2ebe924f9?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b9096275-1027-4819-a3f4-61aa419e234c?api-version=2022-01-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1110,7 +1193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:27:22 GMT + - Fri, 04 Nov 2022 17:10:29 GMT expires: - '-1' pragma: @@ -1127,7 +1210,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f764bca9-ac94-42d2-8d85-e58f2560aed7 + - 676a7979-9753-44fa-a637-b3211f965f2d status: code: 200 message: OK @@ -1146,20 +1229,19 @@ interactions: - -g -n --vnet-name --subnet --private-connection-resource-id --connection-name --group-id --manual-request User-Agent: - - AZURECLI/2.39.0 (PIP) azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.6 - (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-network/21.0.1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005?api-version=2022-01-01 response: body: string: "{\r\n \"name\": \"cli-test-adu-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005\",\r\n - \ \"etag\": \"W/\\\"31ef6c60-9759-47d7-96c6-fe3abc27307f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4d6be1cc-8db3-4ada-a69c-5f1dd6bc2f53\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"2a91c8c6-081d-4ca8-8525-ec5da1d7fb16\",\r\n \"privateLinkServiceConnections\": + \"d647c659-432c-4eb2-bd15-fcc582ca36d7\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"cli-test-adu-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005/manualPrivateLinkServiceConnections/cli-test-adu-pec-000006\",\r\n - \ \"etag\": \"W/\\\"31ef6c60-9759-47d7-96c6-fe3abc27307f\\\"\",\r\n + \ \"etag\": \"W/\\\"4d6be1cc-8db3-4ada-a69c-5f1dd6bc2f53\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002\",\r\n \ \"groupIds\": [\r\n \"DeviceUpdate\"\r\n ],\r\n @@ -1170,7 +1252,7 @@ interactions: \ }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/virtualNetworks/cli-test-adu-pe-vnet000003/subnets/cli-test-adu-pe-subnet000004\"\r\n \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/networkInterfaces/cli-test-adu-pe-000005.nic.af35b8a8-283c-4810-b0c5-7197a733ca0f\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/networkInterfaces/cli-test-adu-pe-000005.nic.593266d7-fc44-4a95-9924-78f31eddcc17\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: cache-control: @@ -1180,9 +1262,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:27:22 GMT + - Fri, 04 Nov 2022 17:10:29 GMT etag: - - W/"31ef6c60-9759-47d7-96c6-fe3abc27307f" + - W/"4d6be1cc-8db3-4ada-a69c-5f1dd6bc2f53" expires: - '-1' pragma: @@ -1199,7 +1281,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cbde8d8e-9129-44a8-b33d-e550f62d94fe + - 29005374-ec26-4b7d-9e64-a606facf7172 status: code: 200 message: OK @@ -1217,22 +1299,22 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateEndpointConnections?api-version=2020-03-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-08-26T01:26:34.4345074Z","lastModifiedBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","lastModifiedByType":"Application","lastModifiedAt":"2022-08-26T01:26:34.4345074Z"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-11-04T17:09:50.66985Z","lastModifiedBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","lastModifiedByType":"Application","lastModifiedAt":"2022-11-04T17:09:50.66985Z"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting approval"},"groupIds":["DeviceUpdate"],"provisioningState":"Succeeded"}}]}' headers: cache-control: - no-cache content-length: - - '987' + - '983' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:27:23 GMT + - Fri, 04 Nov 2022 17:10:30 GMT expires: - '-1' pragma: @@ -1264,24 +1346,24 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateEndpointConnections/cli-test-adu-pe-000005?api-version=2020-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-08-26T01:26:34.4345074Z","lastModifiedBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","lastModifiedByType":"Application","lastModifiedAt":"2022-08-26T01:26:34.4345074Z"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-11-04T17:09:50.66985Z","lastModifiedBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","lastModifiedByType":"Application","lastModifiedAt":"2022-11-04T17:09:50.66985Z"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Pending","description":"Awaiting approval"},"groupIds":["DeviceUpdate"],"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '975' + - '971' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:27:23 GMT + - Fri, 04 Nov 2022 17:10:30 GMT etag: - - '"150116d9-0000-0800-0000-6308214a0000"' + - '"83008ab1-0000-0800-0000-6365475e0000"' expires: - '-1' pragma: @@ -1303,9 +1385,9 @@ interactions: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005", "name": "cli-test-adu-pe-000005", "type": "microsoft.deviceupdate/accounts/privateendpointconnections", "systemData": {"createdBy": "6ee392c4-d339-4083-b04d-6b7947c6cf78", "createdByType": - "Application", "createdAt": "2022-08-26T01:26:34.4345074Z", "lastModifiedBy": + "Application", "createdAt": "2022-11-04T17:09:50.66985Z", "lastModifiedBy": "6ee392c4-d339-4083-b04d-6b7947c6cf78", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-08-26T01:26:34.4345074Z"}, "properties": {"privateEndpoint": + "lastModifiedAt": "2022-11-04T17:09:50.66985Z"}, "properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"}, "privateLinkServiceConnectionState": {"status": "Approved", "description": "Approved!"}, "groupIds": ["DeviceUpdate"], "provisioningState": "Succeeded"}}' @@ -1319,37 +1401,37 @@ interactions: Connection: - keep-alive Content-Length: - - '999' + - '995' Content-Type: - application/json ParameterSetName: - --id --description User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateEndpointConnections/cli-test-adu-pe-000005?api-version=2020-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-08-26T01:26:34.4345074Z","lastModifiedBy":"darkoa@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-26T01:27:24.8598081Z"},"properties":{"provisioningState":"Accepted","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved!"},"groupIds":["DeviceUpdate"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-11-04T17:09:50.66985Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:10:31.5466558Z"},"properties":{"provisioningState":"Accepted","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved!"},"groupIds":["DeviceUpdate"]}}' headers: api-supported-versions: - 2020-03-01-preview, 2022-04-01-preview, 2022-10-01 azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/291fea26-f719-47fc-a2d4-9a9a6fe3757d*919329B54B5830F20E85D8DAB8304F002D1C9D6978CB165F6F9F9CEA2D00CDA3?api-version=2020-03-01-preview + - https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/dfa05768-dd1b-4043-a46d-6b28fdb76661*35B1A7D77689C5CC79CD0B5777A010344E55D64A134D7ED1D90849D5E68D98DF?api-version=2020-03-01-preview cache-control: - no-cache content-length: - - '944' + - '941' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:27:25 GMT + - Fri, 04 Nov 2022 17:10:31 GMT etag: - - '"1501f3da-0000-0800-0000-6308217d0000"' + - '"83000eb2-0000-0800-0000-636547880000"' expires: - '-1' mise-correlation-id: - - f3955d6d-2a71-4d79-a883-40e726cb918b + - 4120fcd8-5a5f-4348-a0d7-2850d49b67b9 pragma: - no-cache strict-transport-security: @@ -1379,23 +1461,23 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateEndpointConnections/cli-test-adu-pe-000005?api-version=2020-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-08-26T01:26:34.4345074Z","lastModifiedBy":"darkoa@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-26T01:27:24.8598081Z"},"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved!"},"groupIds":["DeviceUpdate"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-11-04T17:09:50.66985Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:10:31.5466558Z"},"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved!"},"groupIds":["DeviceUpdate"]}}' headers: cache-control: - no-cache content-length: - - '944' + - '941' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:27:35 GMT + - Fri, 04 Nov 2022 17:10:42 GMT etag: - - '"15013cdb-0000-0800-0000-630821820000"' + - '"83000fb2-0000-0800-0000-636547880000"' expires: - '-1' pragma: @@ -1427,23 +1509,23 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateEndpointConnections/cli-test-adu-pe-000005?api-version=2020-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-08-26T01:26:34.4345074Z","lastModifiedBy":"darkoa@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-26T01:27:24.8598081Z"},"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved!"},"groupIds":["DeviceUpdate"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-11-04T17:09:50.66985Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:10:31.5466558Z"},"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved!"},"groupIds":["DeviceUpdate"]}}' headers: cache-control: - no-cache content-length: - - '944' + - '941' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:27:46 GMT + - Fri, 04 Nov 2022 17:10:52 GMT etag: - - '"15013cdb-0000-0800-0000-630821820000"' + - '"83000fb2-0000-0800-0000-636547880000"' expires: - '-1' pragma: @@ -1475,23 +1557,23 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateEndpointConnections/cli-test-adu-pe-000005?api-version=2020-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-08-26T01:26:34.4345074Z","lastModifiedBy":"darkoa@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-26T01:27:24.8598081Z"},"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved!"},"groupIds":["DeviceUpdate"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-11-04T17:09:50.66985Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:10:31.5466558Z"},"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved!"},"groupIds":["DeviceUpdate"]}}' headers: cache-control: - no-cache content-length: - - '944' + - '941' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:27:56 GMT + - Fri, 04 Nov 2022 17:11:02 GMT etag: - - '"15013cdb-0000-0800-0000-630821820000"' + - '"83000fb2-0000-0800-0000-636547880000"' expires: - '-1' pragma: @@ -1523,23 +1605,23 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateEndpointConnections/cli-test-adu-pe-000005?api-version=2020-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-08-26T01:26:34.4345074Z","lastModifiedBy":"darkoa@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-26T01:27:24.8598081Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved!"},"groupIds":["DeviceUpdate"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-11-04T17:09:50.66985Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:10:31.5466558Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved!"},"groupIds":["DeviceUpdate"]}}' headers: cache-control: - no-cache content-length: - - '945' + - '942' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:28:06 GMT + - Fri, 04 Nov 2022 17:11:12 GMT etag: - - '"15015fdc-0000-0800-0000-6308219f0000"' + - '"830099b2-0000-0800-0000-636547a90000"' expires: - '-1' pragma: @@ -1571,23 +1653,23 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateEndpointConnections/cli-test-adu-pe-000005?api-version=2020-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-08-26T01:26:34.4345074Z","lastModifiedBy":"darkoa@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-26T01:27:24.8598081Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved!"},"groupIds":["DeviceUpdate"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-11-04T17:09:50.66985Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:10:31.5466558Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved!"},"groupIds":["DeviceUpdate"]}}' headers: cache-control: - no-cache content-length: - - '945' + - '942' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:28:06 GMT + - Fri, 04 Nov 2022 17:11:13 GMT etag: - - '"15015fdc-0000-0800-0000-6308219f0000"' + - '"830099b2-0000-0800-0000-636547a90000"' expires: - '-1' pragma: @@ -1609,8 +1691,8 @@ interactions: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005", "name": "cli-test-adu-pe-000005", "type": "microsoft.deviceupdate/accounts/privateendpointconnections", "systemData": {"createdBy": "6ee392c4-d339-4083-b04d-6b7947c6cf78", "createdByType": - "Application", "createdAt": "2022-08-26T01:26:34.4345074Z", "lastModifiedBy": - "darkoa@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-08-26T01:27:24.8598081Z"}, + "Application", "createdAt": "2022-11-04T17:09:50.66985Z", "lastModifiedBy": + "vilit@microsoft.com", "lastModifiedByType": "User", "lastModifiedAt": "2022-11-04T17:10:31.5466558Z"}, "properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"}, "privateLinkServiceConnectionState": {"status": "Rejected", "description": "Rejected!"}, "groupIds": ["DeviceUpdate"]}}' @@ -1624,37 +1706,37 @@ interactions: Connection: - keep-alive Content-Length: - - '976' + - '973' Content-Type: - application/json ParameterSetName: - --id --description User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateEndpointConnections/cli-test-adu-pe-000005?api-version=2020-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-08-26T01:26:34.4345074Z","lastModifiedBy":"darkoa@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-26T01:28:08.045823Z"},"properties":{"provisioningState":"Accepted","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejected!"},"groupIds":["DeviceUpdate"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-11-04T17:09:50.66985Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:11:14.9220199Z"},"properties":{"provisioningState":"Accepted","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejected!"},"groupIds":["DeviceUpdate"]}}' headers: api-supported-versions: - 2020-03-01-preview, 2022-04-01-preview, 2022-10-01 azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/5433f228-5a11-4a91-83a5-93c1f457a91d*919329B54B5830F20E85D8DAB8304F002D1C9D6978CB165F6F9F9CEA2D00CDA3?api-version=2020-03-01-preview + - https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/bd4a723f-e389-433e-823e-273e8390a4a2*35B1A7D77689C5CC79CD0B5777A010344E55D64A134D7ED1D90849D5E68D98DF?api-version=2020-03-01-preview cache-control: - no-cache content-length: - - '943' + - '941' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:28:08 GMT + - Fri, 04 Nov 2022 17:11:15 GMT etag: - - '"1501c8dc-0000-0800-0000-630821a80000"' + - '"8300c1b2-0000-0800-0000-636547b30000"' expires: - '-1' mise-correlation-id: - - 9e90ed73-efb1-4c34-a3d6-d56c852ec312 + - 3ff44d13-e2ce-4e46-89da-dc30a82a19b6 pragma: - no-cache strict-transport-security: @@ -1684,23 +1766,23 @@ interactions: ParameterSetName: - --id --description User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateEndpointConnections/cli-test-adu-pe-000005?api-version=2020-03-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-08-26T01:26:34.4345074Z","lastModifiedBy":"darkoa@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-26T01:28:08.045823Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejected!"},"groupIds":["DeviceUpdate"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/microsoft.deviceupdate/accounts/cli-test-adu-000002/privateendpointconnections/cli-test-adu-pe-000005","name":"cli-test-adu-pe-000005","type":"microsoft.deviceupdate/accounts/privateendpointconnections","systemData":{"createdBy":"6ee392c4-d339-4083-b04d-6b7947c6cf78","createdByType":"Application","createdAt":"2022-11-04T17:09:50.66985Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:11:14.9220199Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.Network/privateEndpoints/cli-test-adu-pe-000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Rejected!"},"groupIds":["DeviceUpdate"]}}' headers: cache-control: - no-cache content-length: - - '944' + - '942' content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:28:18 GMT + - Fri, 04 Nov 2022 17:11:25 GMT etag: - - '"1501d8dc-0000-0800-0000-630821aa0000"' + - '"8300c4b2-0000-0800-0000-636547b50000"' expires: - '-1' pragma: @@ -1734,7 +1816,7 @@ interactions: ParameterSetName: - --id --yes User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateEndpointConnections/cli-test-adu-pe-000005?api-version=2020-03-01-preview response: @@ -1744,7 +1826,7 @@ interactions: api-supported-versions: - 2020-03-01-preview, 2022-04-01-preview, 2022-10-01 azure-asyncoperation: - - https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/b9c06c9d-db2e-4041-9729-20caf309f46e*919329B54B5830F20E85D8DAB8304F002D1C9D6978CB165F6F9F9CEA2D00CDA3?api-version=2020-03-01-preview + - https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/69a7d0ee-0ab6-4698-a516-e75465519c8f*35B1A7D77689C5CC79CD0B5777A010344E55D64A134D7ED1D90849D5E68D98DF?api-version=2020-03-01-preview cache-control: - no-cache content-length: @@ -1752,15 +1834,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 26 Aug 2022 01:28:20 GMT + - Fri, 04 Nov 2022 17:11:27 GMT etag: - - '"15015ddd-0000-0800-0000-630821b40000"' + - '"83000bb3-0000-0800-0000-636547c00000"' expires: - '-1' location: - - https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/b9c06c9d-db2e-4041-9729-20caf309f46e*919329B54B5830F20E85D8DAB8304F002D1C9D6978CB165F6F9F9CEA2D00CDA3?api-version=2020-03-01-preview + - https://management.azure.com/providers/Microsoft.DeviceUpdate/locations/WESTUS2/operationStatuses/69a7d0ee-0ab6-4698-a516-e75465519c8f*35B1A7D77689C5CC79CD0B5777A010344E55D64A134D7ED1D90849D5E68D98DF?api-version=2020-03-01-preview mise-correlation-id: - - 9691f07e-4a6e-4df1-8592-de282e5a66f3 + - 25dc58ae-d789-4c3f-9891-9d3dbe2001ed pragma: - no-cache strict-transport-security: @@ -1790,7 +1872,7 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.10.6 (Windows-10-10.0.22000-SP0) AZURECLI/2.39.0 (PIP) + - python/3.9.6 (Windows-10-10.0.22621-SP0) AZURECLI/2.41.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_deviceupdate_private_endpoint000001/providers/Microsoft.DeviceUpdate/accounts/cli-test-adu-000002/privateEndpointConnections/cli-test-adu-pe-000005?api-version=2020-03-01-preview response: @@ -1805,7 +1887,7 @@ interactions: content-type: - application/json date: - - Fri, 26 Aug 2022 01:29:51 GMT + - Fri, 04 Nov 2022 17:12:58 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_private_endpoint_commands.py b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_private_endpoint_commands.py index 78f72f17e32..3920be07583 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_private_endpoint_commands.py +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/test_private_endpoint_commands.py @@ -949,7 +949,7 @@ def test_farmbeats_private_endpoint(self, resource_group): private_link_resources = self.cmd( 'network private-link-resource list --id {resource_id} ').get_output_in_json() self.kwargs['group_id'] = private_link_resources[0]['properties']['groupId'] - + # Create private endpoint private_endpoint = self.cmd( @@ -957,8 +957,8 @@ def test_farmbeats_private_endpoint(self, resource_group): '--private-connection-resource-id {resource_id} --connection-name {private_endpoint_connection} ' '--group-id {group_id}').get_output_in_json() self.assertTrue(self.kwargs['private_endpoint'].lower() in private_endpoint['name'].lower()) - - + + # Test get private endpoint connection private_endpoint_connections = self.cmd('network private-endpoint-connection list --id {resource_id}').get_output_in_json() @@ -3474,7 +3474,7 @@ def test_kubernetesconfiguration_private_endpoint(self, resource_group): }) - # Test create Private Link Scope create + # Test create Private Link Scope create self.cmd('az rest --method "PUT" \ --url "https://management.azure.com/subscriptions/{sub}/resourcegroups/{rg}/providers/Microsoft.KubernetesConfiguration/privateLinkScopes/{scopename}?api-version=2022-04-02-preview" \ --body "{body}"') @@ -3621,7 +3621,7 @@ def test_private_link_endpoint_deviceupdate(self, resource_group): # Create device update account deviceupdate = self.cmd( - 'iot device-update account create --account {deviceupdate_name} --resource-group {rg}').get_output_in_json() + 'iot du account create --account {deviceupdate_name} --resource-group {rg}').get_output_in_json() self.kwargs['deviceupdate_id'] = deviceupdate['id'] # Create a vnet and subnet for private endpoint connection From fc77e5b08c48154b434cc5035f6c3535268f2a4f Mon Sep 17 00:00:00 2001 From: Victoria Litvinova Date: Fri, 4 Nov 2022 11:00:25 -0700 Subject: [PATCH 08/10] rerecord iot solution --- .../latest/recordings/test_security_iot.yaml | 1103 +++++++++++++++-- .../tests/latest/test_iot_scenario.py | 4 +- 2 files changed, 988 insertions(+), 119 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_iot.yaml b/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_iot.yaml index 5e015a99f9a..235001f011e 100644 --- a/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_iot.yaml +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/recordings/test_security_iot.yaml @@ -1,9 +1,434 @@ interactions: +- request: + body: '{"location": "westeurope", "properties": {"eventHubEndpoints": {"events": + {"retentionTimeInDays": 1, "partitionCount": 4}}, "storageEndpoints": {"$default": + {"sasTtlAsIso8601": "PT1H", "connectionString": "", "containerName": ""}}, "messagingEndpoints": + {"fileNotifications": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", + "maxDeliveryCount": 10}}, "enableFileUploadNotifications": false, "cloudToDevice": + {"maxDeliveryCount": 10, "defaultTtlAsIso8601": "PT1H", "feedback": {"lockDurationAsIso8601": + "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}}, "sku": {"name": "S1", + "capacity": 1}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + Content-Length: + - '607' + Content-Type: + - application/json + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002?api-version=2022-04-30-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002","name":"azurecli-hub000002","type":"Microsoft.Devices/IotHubs","location":"westeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","properties":{"provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + cache-control: + - no-cache + content-length: + - '962' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:49:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '4999' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Pending"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:49: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:50: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:50:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:51: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: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:51:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:52:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:52:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:53:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -11,29 +436,33 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g -l User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-18T02:31:32Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '310' + - '20' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:31:36 GMT + - Fri, 04 Nov 2022 17:53:38 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -42,47 +471,34 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"eventHubEndpoints": {"events": {"retentionTimeInDays": - 1, "partitionCount": 4}}, "storageEndpoints": {"$default": {"sasTtlAsIso8601": - "PT1H", "connectionString": "", "containerName": ""}}, "messagingEndpoints": - {"fileNotifications": {"lockDurationAsIso8601": "PT5S", "ttlAsIso8601": "PT1H", - "maxDeliveryCount": 10}}, "enableFileUploadNotifications": false, "cloudToDevice": - {"maxDeliveryCount": 10, "defaultTtlAsIso8601": "PT1H", "feedback": {"lockDurationAsIso8601": - "PT5S", "ttlAsIso8601": "PT1H", "maxDeliveryCount": 10}}}, "sku": {"name": "S1", - "capacity": 1}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - iot hub create Connection: - keep-alive - Content-Length: - - '603' - Content-Type: - - application/json ParameterSetName: - - -n -g + - -n -g -l User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002?api-version=2022-04-30-preview + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002","name":"azurecli-hub000002","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","properties":{"state":"Activating","provisioningState":"Accepted","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4},"operationsMonitoringEvents":{"retentionTimeInDays":1,"partitionCount":4}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1}}' + string: '{"status":"Running"}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfNzkzOGZjNGUtMDdlOC00NWU3LTk0ZGMtZmVhMTJhYjkyMDgyO3JlZ2lvbj1lYXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo cache-control: - no-cache content-length: - - '1053' + - '20' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:31:41 GMT + - Fri, 04 Nov 2022 17:54:08 GMT expires: - '-1' pragma: @@ -91,13 +507,245 @@ 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-resource-requests: - - '4999' status: - code: 201 - message: Created + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:54:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:55:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:55:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:56:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - iot hub create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l + User-Agent: + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo + response: + body: + string: '{"status":"Running"}' + headers: + cache-control: + - no-cache + content-length: + - '20' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 04 Nov 2022 17:56:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: @@ -110,11 +758,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g -l User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfNzkzOGZjNGUtMDdlOC00NWU3LTk0ZGMtZmVhMTJhYjkyMDgyO3JlZ2lvbj1lYXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -126,7 +774,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:32:12 GMT + - Fri, 04 Nov 2022 17:57:09 GMT expires: - '-1' pragma: @@ -156,11 +804,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g -l User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfNzkzOGZjNGUtMDdlOC00NWU3LTk0ZGMtZmVhMTJhYjkyMDgyO3JlZ2lvbj1lYXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -172,7 +820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:32:42 GMT + - Fri, 04 Nov 2022 17:57:39 GMT expires: - '-1' pragma: @@ -202,11 +850,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g -l User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfNzkzOGZjNGUtMDdlOC00NWU3LTk0ZGMtZmVhMTJhYjkyMDgyO3JlZ2lvbj1lYXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Running"}' @@ -218,7 +866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:33:12 GMT + - Fri, 04 Nov 2022 17:58:10 GMT expires: - '-1' pragma: @@ -248,11 +896,11 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g -l User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/eastus/operationResults/aWQ9b3NfaWhfNzkzOGZjNGUtMDdlOC00NWU3LTk0ZGMtZmVhMTJhYjkyMDgyO3JlZ2lvbj1lYXN0dXM=?api-version=2021-07-02&operationSource=other&asyncinfo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Devices/locations/westeurope/operationResults/aWQ9b3NfaWhfN2IxMDdkNzktNDQzNi00MjY3LTg4M2QtMTNlNWRjNDE0NWI1O3JlZ2lvbj13ZXN0ZXVyb3Bl?api-version=2022-04-30-preview&operationSource=other&asyncinfo response: body: string: '{"status":"Succeeded"}' @@ -264,7 +912,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:33:42 GMT + - Fri, 04 Nov 2022 17:58:40 GMT expires: - '-1' pragma: @@ -294,24 +942,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g -l User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-iothub/2.2.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-iothub/2.3.0 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002?api-version=2022-04-30-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002","name":"azurecli-hub000002","type":"Microsoft.Devices/IotHubs","location":"eastus","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADGJLvSA=","properties":{"locations":[{"location":"East - US","role":"primary"},{"location":"West US","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"azurecli-hub000002.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"azurecli-hub000002","endpoint":"sb://iothub-ns-azurecli-h-17428939-690c0217bf.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-02-18T02:31:41.33Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002","name":"azurecli-hub000002","type":"Microsoft.Devices/IotHubs","location":"westeurope","tags":{},"subscriptionid":"a386d5ea-ea90-441a-8263-d816368c84a1","resourcegroup":"clitest.rg000001","etag":"AAAADHUGdLI=","properties":{"locations":[{"location":"West + Europe","role":"primary"},{"location":"North Europe","role":"secondary"}],"state":"Active","provisioningState":"Succeeded","ipFilterRules":[],"hostName":"azurecli-hub000002.azure-devices.net","eventHubEndpoints":{"events":{"retentionTimeInDays":1,"partitionCount":4,"partitionIds":["0","1","2","3"],"path":"azurecli-hub000002","endpoint":"sb://iothub-ns-azurecli-h-22672651-391ab71c8b.servicebus.windows.net/"}},"routing":{"endpoints":{"serviceBusQueues":[],"serviceBusTopics":[],"eventHubs":[],"storageContainers":[],"cosmosDBSqlCollections":[]},"routes":[],"fallbackRoute":{"name":"$fallback","source":"DeviceMessages","condition":"true","endpointNames":["events"],"isEnabled":true}},"storageEndpoints":{"$default":{"sasTtlAsIso8601":"PT1H","connectionString":"","containerName":""}},"messagingEndpoints":{"fileNotifications":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"enableFileUploadNotifications":false,"cloudToDevice":{"maxDeliveryCount":10,"defaultTtlAsIso8601":"PT1H","feedback":{"lockDurationAsIso8601":"PT5S","ttlAsIso8601":"PT1H","maxDeliveryCount":10}},"features":"None","allowedFqdnList":[]},"sku":{"name":"S1","tier":"Standard","capacity":1},"identity":{"type":"None"},"systemData":{"createdAt":"2022-11-04T17:49:35.0566667Z"}}' headers: cache-control: - no-cache content-length: - - '1633' + - '1679' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:33:42 GMT + - Fri, 04 Nov 2022 17:58:41 GMT expires: - '-1' pragma: @@ -341,9 +989,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g -l User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2019-11-01 response: @@ -363,9 +1011,7 @@ interactions: Central\",\"regionalDisplayName\":\"(Europe) Sweden Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"17.14127\",\"latitude\":\"60.67488\",\"physicalLocation\":\"G\xE4vle\",\"pairedRegion\":[{\"name\":\"swedensouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/swedensouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"displayName\":\"UK South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"displayName\":\"West Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"displayName\":\"Central - US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North - Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West - US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South + US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.218370\",\"latitude\":\"-25.731340\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"displayName\":\"Central India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"displayName\":\"East @@ -374,9 +1020,7 @@ interactions: Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"displayName\":\"Japan East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo, - Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"displayName\":\"Jio - India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia - Pacific\",\"longitude\":\"70.05773\",\"latitude\":\"22.470701\",\"physicalLocation\":\"Jamnagar\",\"pairedRegion\":[{\"name\":\"jioindiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea + Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"126.9780\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"displayName\":\"Canada Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"displayName\":\"France @@ -388,7 +1032,10 @@ interactions: East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"displayName\":\"Brazil South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"South America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao - Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central + Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East + US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/qatarcentral\",\"name\":\"qatarcentral\",\"displayName\":\"Qatar + Central\",\"regionalDisplayName\":\"(Middle East) Qatar Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Middle + East\",\"longitude\":\"51.439327\",\"latitude\":\"25.551462\",\"physicalLocation\":\"Doha\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"displayName\":\"East US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"displayName\":\"East US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"displayName\":\"North @@ -396,7 +1043,7 @@ interactions: Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"displayName\":\"West US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"displayName\":\"West US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"displayName\":\"Asia - Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"displayName\":\"South + Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/france\",\"name\":\"france\",\"displayName\":\"France\",\"regionalDisplayName\":\"France\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germany\",\"name\":\"germany\",\"displayName\":\"Germany\",\"regionalDisplayName\":\"Germany\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/korea\",\"name\":\"korea\",\"displayName\":\"Korea\",\"regionalDisplayName\":\"Korea\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norway\",\"name\":\"norway\",\"displayName\":\"Norway\",\"regionalDisplayName\":\"Norway\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/singapore\",\"name\":\"singapore\",\"displayName\":\"Singapore\",\"regionalDisplayName\":\"Singapore\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafrica\",\"name\":\"southafrica\",\"displayName\":\"South Africa\",\"regionalDisplayName\":\"South Africa\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerland\",\"name\":\"switzerland\",\"displayName\":\"Switzerland\",\"regionalDisplayName\":\"Switzerland\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uae\",\"name\":\"uae\",\"displayName\":\"United Arab Emirates\",\"regionalDisplayName\":\"United Arab Emirates\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"displayName\":\"United Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"displayName\":\"United @@ -405,9 +1052,14 @@ interactions: Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"displayName\":\"Southeast Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia - Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central - US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East - US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West + Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\",\"name\":\"eastusstg\",\"displayName\":\"East + US STG\",\"regionalDisplayName\":\"(US) East US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"southcentralusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstg\",\"name\":\"southcentralusstg\",\"displayName\":\"South + Central US STG\",\"regionalDisplayName\":\"(US) South Central US STG\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"eastusstg\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstg\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North + Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West + US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest\",\"name\":\"jioindiawest\",\"displayName\":\"Jio + India West\",\"regionalDisplayName\":\"(Asia Pacific) Jio India West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia + Pacific\",\"longitude\":\"70.05773\",\"latitude\":\"22.470701\",\"physicalLocation\":\"Jamnagar\",\"pairedRegion\":[{\"name\":\"jioindiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central + US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.890\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"displayName\":\"South Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"displayName\":\"Australia @@ -442,11 +1094,11 @@ interactions: cache-control: - no-cache content-length: - - '28782' + - '30402' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:33:44 GMT + - Fri, 04 Nov 2022 17:58:43 GMT expires: - '-1' pragma: @@ -461,7 +1113,7 @@ interactions: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"displayName": "Solution Default", + body: '{"location": "westeurope", "properties": {"displayName": "Solution Default", "status": "Enabled", "iotHubs": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002"], "unmaskedIpLoggingStatus": "Disabled"}}' headers: @@ -474,18 +1126,18 @@ interactions: Connection: - keep-alive Content-Length: - - '288' + - '292' Content-Type: - application/json ParameterSetName: - --solution-name --resource-group --iot-hubs --display-name --location User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub?api-version=2019-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub","type":"Microsoft.Security/iotSecuritySolutions","name":"azurecli-hub","location":"eastus","properties":{"displayName":"Solution + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub","type":"Microsoft.Security/iotSecuritySolutions","name":"azurecli-hub","location":"westeurope","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":[],"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002"],"userDefinedResources":{"query":null,"querySubscriptions":null},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service prinicpal not used with ACR repository","status":"Enabled"},{"recommendationType":"IoT_AgentSendsUnutilizedMessages","name":"Agent sending underutilized messages","status":"Enabled"},{"recommendationType":"IoT_AuditdNotReceived","name":"Auditd @@ -543,8 +1195,8 @@ interactions: noexec option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoexecOptionOnTmpPartition","name":"Ensure noexec option set on /tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcGroup","name":"Ensure no legacy ''+'' entries exist in /etc/group","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcPasswd","name":"Ensure - no legacy ''+'' entries exist in /etc/passwd","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcShadow","name":" - Ensure no legacy ''+'' entries exist in /etc/shadow","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidOptionOnTmpPartition","name":"Ensure + no legacy ''+'' entries exist in /etc/passwd","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcShadow","name":"Ensure + no legacy ''+'' entries exist in /etc/shadow","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidOptionOnTmpPartition","name":"Ensure nosuid option set on /tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NtpConfigured","name":"Ensure ntp is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PacketRedirectDisabled","name":"Ensure packet redirect sending is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PasswordCreationRequirementsConfigured","name":"Ensure @@ -582,16 +1234,59 @@ interactions: time synchronization is in use","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_TmpConfigured","name":"Ensure /tmp is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_UsersHomeDirsPermissions","name":"Ensure users'' home directories permissions are 750 or more restrictive","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_UsersOwnTheirHomeDirs","name":"Ensure - users own their home directories","status":"Enabled"}],"autoDiscoveredResources":[],"unmaskedIpLoggingStatus":"Disabled"},"tags":{},"systemData":{"createdBy":"rykelly@microsoft.com","createdByType":"User","createdAt":"2022-02-18T02:33:47.27Z","lastModifiedBy":"rykelly@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-02-18T02:33:47.27Z"}}' + users own their home directories","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_Authorization","name":"Review + unauthorized devices","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_SecuredStatePLC","name":"Review + PLC operating mode","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_MissingAuthentication","name":"Set + a secure password for devices with missing authentication","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_WeakPassword","name":"Set + a stronger password with minimum length and complexity","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_BootloaderConfig","name":"Ensure + permissions on bootloader config are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_BootloaderPassword","name":"Ensure + bootloader password is set","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronDailyPermissions","name":"Ensure + permissions on /etc/cron.daily are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronDPermissions","name":"Ensure + permissions on /etc/cron.d are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronHourlyPermissions","name":"Ensure + permissions on /etc/cron.hourly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronMonthlyPermissions","name":"Ensure + permissions on /etc/cron.monthly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCrontabPermissions","name":"Ensure + permissions on /etc/crontab are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronWeeklyPermissions","name":"Ensure + permissions on /etc/cron.weekly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcPasswdGroupsInEtcGroup","name":"Ensure + all groups in /etc/passwd exist in /etc/group","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_InteractiveBootDisabled","name":"Ensure + interactive boot is not enabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_IPv6RouterAdvertisementsBlocked","name":"Ensure + IPv6 router advertisements are not accepted","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevPartitionForHome","name":"Ensure + nodev option set on /home partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevSetOnDevShm","name":"Ensure + nodev option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevSetOnVar","name":"Ensure + nodev option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoDuplicateGroupNames","name":"Ensure + no duplicate group names exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoDuplicateUserNames","name":"Ensure + no duplicate user names exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoexecSetOnDevShm","name":"Ensure + noexec option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoGIDsDuplicates","name":"Ensure + no duplicate GIDs exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidSetOnDevShm","name":"Ensure + nosuid option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidSetOnVar","name":"Ensure + nosuid option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoUIDsDuplicates","name":"Ensure + no duplicate UIDs exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PrelinkDisabled","name":"Ensure + prelink is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_RestrictedDumps","name":"Ensure + core dumps are restricted","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SecuredSystemAccounts","name":"Ensure + system accounts are secured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxAppArmorInstalled","name":"Ensure + SELinux or AppArmor are installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxPolicy","name":"Ensure + SELinux policy is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxStateEnforcing","name":"Ensure + the SELinux state is enforcing","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SeparatePartitionForVarLogAudit","name":"Ensure + separate partition exists for /var/log/audit","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SETroubleshootNotInstalled","name":"Ensure + SETroubleshoot is not installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SingleUserAuthentication","name":"Ensure + authentication required for single user mode","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SshPermitUserEnviromentDisabled","name":"Ensure + SSH PermitUserEnvironment is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SshX11ForwardingDisabled","name":"Ensure + SSH X11 forwarding is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_StrongCiphers","name":"Ensure + only strong Ciphers are used","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_TCPWrappersInstalled","name":"Ensure + TCP Wrappers is installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_XDNXSupport","name":"Ensure + XD/NX support is enabled","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_RockwellCve","name":"Secure + your vulnerable Rockwell devices","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_SiemensCve","name":"Secure + your vulnerable Siemens devices","status":"Enabled"},{"recommendationType":"IoT_Recommendation_SNMP","name":"Remove + insecure administration protocols SNMP V1 and SNMP V2","status":"Enabled"},{"recommendationType":"IoT_Recommendation_Telnet","name":"Disable + insecure administration protocol Telnet","status":"Enabled"}],"autoDiscoveredResources":[],"unmaskedIpLoggingStatus":"Disabled"},"tags":{},"systemData":{"createdBy":"vilit@microsoft.com","createdByType":"User","createdAt":"2022-11-04T17:58:45.403Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:58:45.403Z"}}' headers: cache-control: - no-cache content-length: - - '13979' + - '19757' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:33:48 GMT + - Fri, 04 Nov 2022 17:58:47 GMT expires: - '-1' pragma: @@ -623,12 +1318,12 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub","type":"Microsoft.Security/iotSecuritySolutions","name":"azurecli-hub","location":"eastus","properties":{"displayName":"Solution + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub","type":"Microsoft.Security/iotSecuritySolutions","name":"azurecli-hub","location":"westeurope","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":[],"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002"],"userDefinedResources":{"query":null,"querySubscriptions":null},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service prinicpal not used with ACR repository","status":"Enabled"},{"recommendationType":"IoT_AgentSendsUnutilizedMessages","name":"Agent sending underutilized messages","status":"Enabled"},{"recommendationType":"IoT_AuditdNotReceived","name":"Auditd @@ -686,8 +1381,8 @@ interactions: noexec option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoexecOptionOnTmpPartition","name":"Ensure noexec option set on /tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcGroup","name":"Ensure no legacy ''+'' entries exist in /etc/group","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcPasswd","name":"Ensure - no legacy ''+'' entries exist in /etc/passwd","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcShadow","name":" - Ensure no legacy ''+'' entries exist in /etc/shadow","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidOptionOnTmpPartition","name":"Ensure + no legacy ''+'' entries exist in /etc/passwd","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcShadow","name":"Ensure + no legacy ''+'' entries exist in /etc/shadow","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidOptionOnTmpPartition","name":"Ensure nosuid option set on /tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NtpConfigured","name":"Ensure ntp is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PacketRedirectDisabled","name":"Ensure packet redirect sending is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PasswordCreationRequirementsConfigured","name":"Ensure @@ -725,28 +1420,72 @@ interactions: time synchronization is in use","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_TmpConfigured","name":"Ensure /tmp is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_UsersHomeDirsPermissions","name":"Ensure users'' home directories permissions are 750 or more restrictive","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_UsersOwnTheirHomeDirs","name":"Ensure - users own their home directories","status":"Enabled"}],"autoDiscoveredResources":[],"unmaskedIpLoggingStatus":"Disabled"},"tags":{},"systemData":{"createdBy":"rykelly@microsoft.com","createdByType":"User","createdAt":"2022-02-18T02:33:47.27Z","lastModifiedBy":"rykelly@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-02-18T02:33:47.27Z"}}]}' + users own their home directories","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_Authorization","name":"Review + unauthorized devices","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_SecuredStatePLC","name":"Review + PLC operating mode","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_MissingAuthentication","name":"Set + a secure password for devices with missing authentication","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_WeakPassword","name":"Set + a stronger password with minimum length and complexity","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_BootloaderConfig","name":"Ensure + permissions on bootloader config are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_BootloaderPassword","name":"Ensure + bootloader password is set","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronDailyPermissions","name":"Ensure + permissions on /etc/cron.daily are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronDPermissions","name":"Ensure + permissions on /etc/cron.d are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronHourlyPermissions","name":"Ensure + permissions on /etc/cron.hourly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronMonthlyPermissions","name":"Ensure + permissions on /etc/cron.monthly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCrontabPermissions","name":"Ensure + permissions on /etc/crontab are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronWeeklyPermissions","name":"Ensure + permissions on /etc/cron.weekly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcPasswdGroupsInEtcGroup","name":"Ensure + all groups in /etc/passwd exist in /etc/group","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_InteractiveBootDisabled","name":"Ensure + interactive boot is not enabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_IPv6RouterAdvertisementsBlocked","name":"Ensure + IPv6 router advertisements are not accepted","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevPartitionForHome","name":"Ensure + nodev option set on /home partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevSetOnDevShm","name":"Ensure + nodev option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevSetOnVar","name":"Ensure + nodev option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoDuplicateGroupNames","name":"Ensure + no duplicate group names exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoDuplicateUserNames","name":"Ensure + no duplicate user names exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoexecSetOnDevShm","name":"Ensure + noexec option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoGIDsDuplicates","name":"Ensure + no duplicate GIDs exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidSetOnDevShm","name":"Ensure + nosuid option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidSetOnVar","name":"Ensure + nosuid option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoUIDsDuplicates","name":"Ensure + no duplicate UIDs exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PrelinkDisabled","name":"Ensure + prelink is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_RestrictedDumps","name":"Ensure + core dumps are restricted","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SecuredSystemAccounts","name":"Ensure + system accounts are secured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxAppArmorInstalled","name":"Ensure + SELinux or AppArmor are installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxPolicy","name":"Ensure + SELinux policy is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxStateEnforcing","name":"Ensure + the SELinux state is enforcing","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SeparatePartitionForVarLogAudit","name":"Ensure + separate partition exists for /var/log/audit","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SETroubleshootNotInstalled","name":"Ensure + SETroubleshoot is not installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SingleUserAuthentication","name":"Ensure + authentication required for single user mode","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SshPermitUserEnviromentDisabled","name":"Ensure + SSH PermitUserEnvironment is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SshX11ForwardingDisabled","name":"Ensure + SSH X11 forwarding is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_StrongCiphers","name":"Ensure + only strong Ciphers are used","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_TCPWrappersInstalled","name":"Ensure + TCP Wrappers is installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_XDNXSupport","name":"Ensure + XD/NX support is enabled","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_RockwellCve","name":"Secure + your vulnerable Rockwell devices","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_SiemensCve","name":"Secure + your vulnerable Siemens devices","status":"Enabled"},{"recommendationType":"IoT_Recommendation_SNMP","name":"Remove + insecure administration protocols SNMP V1 and SNMP V2","status":"Enabled"},{"recommendationType":"IoT_Recommendation_Telnet","name":"Disable + insecure administration protocol Telnet","status":"Enabled"}],"autoDiscoveredResources":[],"unmaskedIpLoggingStatus":"Disabled"},"tags":{},"systemData":{"createdBy":"vilit@microsoft.com","createdByType":"User","createdAt":"2022-11-04T17:58:45.403Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:58:45.403Z"}}]}' headers: cache-control: - no-cache content-length: - - '13991' + - '19769' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:33:48 GMT + - Fri, 04 Nov 2022 17:58:48 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' x-ms-ratelimit-remaining-subscription-resource-requests: - '749' status: @@ -770,12 +1509,12 @@ interactions: ParameterSetName: - --solution-name --resource-group --iot-hubs --display-name User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub?api-version=2019-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub","type":"Microsoft.Security/iotSecuritySolutions","name":"azurecli-hub","location":"eastus","properties":{"displayName":"Solution + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub","type":"Microsoft.Security/iotSecuritySolutions","name":"azurecli-hub","location":"westeurope","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":[],"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002"],"userDefinedResources":{"query":null,"querySubscriptions":null},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service prinicpal not used with ACR repository","status":"Enabled"},{"recommendationType":"IoT_AgentSendsUnutilizedMessages","name":"Agent sending underutilized messages","status":"Enabled"},{"recommendationType":"IoT_AuditdNotReceived","name":"Auditd @@ -833,8 +1572,8 @@ interactions: noexec option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoexecOptionOnTmpPartition","name":"Ensure noexec option set on /tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcGroup","name":"Ensure no legacy ''+'' entries exist in /etc/group","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcPasswd","name":"Ensure - no legacy ''+'' entries exist in /etc/passwd","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcShadow","name":" - Ensure no legacy ''+'' entries exist in /etc/shadow","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidOptionOnTmpPartition","name":"Ensure + no legacy ''+'' entries exist in /etc/passwd","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcShadow","name":"Ensure + no legacy ''+'' entries exist in /etc/shadow","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidOptionOnTmpPartition","name":"Ensure nosuid option set on /tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NtpConfigured","name":"Ensure ntp is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PacketRedirectDisabled","name":"Ensure packet redirect sending is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PasswordCreationRequirementsConfigured","name":"Ensure @@ -872,16 +1611,59 @@ interactions: time synchronization is in use","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_TmpConfigured","name":"Ensure /tmp is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_UsersHomeDirsPermissions","name":"Ensure users'' home directories permissions are 750 or more restrictive","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_UsersOwnTheirHomeDirs","name":"Ensure - users own their home directories","status":"Enabled"}],"autoDiscoveredResources":[],"unmaskedIpLoggingStatus":"Disabled"},"tags":{},"systemData":{"createdBy":"rykelly@microsoft.com","createdByType":"User","createdAt":"2022-02-18T02:33:47.27Z","lastModifiedBy":"rykelly@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-02-18T02:33:50.383Z"}}' + users own their home directories","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_Authorization","name":"Review + unauthorized devices","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_SecuredStatePLC","name":"Review + PLC operating mode","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_MissingAuthentication","name":"Set + a secure password for devices with missing authentication","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_WeakPassword","name":"Set + a stronger password with minimum length and complexity","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_BootloaderConfig","name":"Ensure + permissions on bootloader config are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_BootloaderPassword","name":"Ensure + bootloader password is set","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronDailyPermissions","name":"Ensure + permissions on /etc/cron.daily are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronDPermissions","name":"Ensure + permissions on /etc/cron.d are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronHourlyPermissions","name":"Ensure + permissions on /etc/cron.hourly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronMonthlyPermissions","name":"Ensure + permissions on /etc/cron.monthly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCrontabPermissions","name":"Ensure + permissions on /etc/crontab are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronWeeklyPermissions","name":"Ensure + permissions on /etc/cron.weekly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcPasswdGroupsInEtcGroup","name":"Ensure + all groups in /etc/passwd exist in /etc/group","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_InteractiveBootDisabled","name":"Ensure + interactive boot is not enabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_IPv6RouterAdvertisementsBlocked","name":"Ensure + IPv6 router advertisements are not accepted","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevPartitionForHome","name":"Ensure + nodev option set on /home partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevSetOnDevShm","name":"Ensure + nodev option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevSetOnVar","name":"Ensure + nodev option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoDuplicateGroupNames","name":"Ensure + no duplicate group names exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoDuplicateUserNames","name":"Ensure + no duplicate user names exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoexecSetOnDevShm","name":"Ensure + noexec option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoGIDsDuplicates","name":"Ensure + no duplicate GIDs exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidSetOnDevShm","name":"Ensure + nosuid option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidSetOnVar","name":"Ensure + nosuid option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoUIDsDuplicates","name":"Ensure + no duplicate UIDs exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PrelinkDisabled","name":"Ensure + prelink is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_RestrictedDumps","name":"Ensure + core dumps are restricted","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SecuredSystemAccounts","name":"Ensure + system accounts are secured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxAppArmorInstalled","name":"Ensure + SELinux or AppArmor are installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxPolicy","name":"Ensure + SELinux policy is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxStateEnforcing","name":"Ensure + the SELinux state is enforcing","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SeparatePartitionForVarLogAudit","name":"Ensure + separate partition exists for /var/log/audit","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SETroubleshootNotInstalled","name":"Ensure + SETroubleshoot is not installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SingleUserAuthentication","name":"Ensure + authentication required for single user mode","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SshPermitUserEnviromentDisabled","name":"Ensure + SSH PermitUserEnvironment is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SshX11ForwardingDisabled","name":"Ensure + SSH X11 forwarding is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_StrongCiphers","name":"Ensure + only strong Ciphers are used","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_TCPWrappersInstalled","name":"Ensure + TCP Wrappers is installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_XDNXSupport","name":"Ensure + XD/NX support is enabled","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_RockwellCve","name":"Secure + your vulnerable Rockwell devices","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_SiemensCve","name":"Secure + your vulnerable Siemens devices","status":"Enabled"},{"recommendationType":"IoT_Recommendation_SNMP","name":"Remove + insecure administration protocols SNMP V1 and SNMP V2","status":"Enabled"},{"recommendationType":"IoT_Recommendation_Telnet","name":"Disable + insecure administration protocol Telnet","status":"Enabled"}],"autoDiscoveredResources":[],"unmaskedIpLoggingStatus":"Disabled"},"tags":{},"systemData":{"createdBy":"vilit@microsoft.com","createdByType":"User","createdAt":"2022-11-04T17:58:45.403Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:58:50.207Z"}}' headers: cache-control: - no-cache content-length: - - '13980' + - '19757' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:33:49 GMT + - Fri, 04 Nov 2022 17:58:50 GMT expires: - '-1' pragma: @@ -913,12 +1695,12 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions?api-version=2019-08-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub","type":"Microsoft.Security/iotSecuritySolutions","name":"azurecli-hub","location":"eastus","properties":{"displayName":"Solution + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub","type":"Microsoft.Security/iotSecuritySolutions","name":"azurecli-hub","location":"westeurope","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":[],"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002"],"userDefinedResources":{"query":null,"querySubscriptions":null},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service prinicpal not used with ACR repository","status":"Enabled"},{"recommendationType":"IoT_AgentSendsUnutilizedMessages","name":"Agent sending underutilized messages","status":"Enabled"},{"recommendationType":"IoT_AuditdNotReceived","name":"Auditd @@ -976,8 +1758,8 @@ interactions: noexec option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoexecOptionOnTmpPartition","name":"Ensure noexec option set on /tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcGroup","name":"Ensure no legacy ''+'' entries exist in /etc/group","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcPasswd","name":"Ensure - no legacy ''+'' entries exist in /etc/passwd","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcShadow","name":" - Ensure no legacy ''+'' entries exist in /etc/shadow","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidOptionOnTmpPartition","name":"Ensure + no legacy ''+'' entries exist in /etc/passwd","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcShadow","name":"Ensure + no legacy ''+'' entries exist in /etc/shadow","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidOptionOnTmpPartition","name":"Ensure nosuid option set on /tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NtpConfigured","name":"Ensure ntp is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PacketRedirectDisabled","name":"Ensure packet redirect sending is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PasswordCreationRequirementsConfigured","name":"Ensure @@ -1015,28 +1797,72 @@ interactions: time synchronization is in use","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_TmpConfigured","name":"Ensure /tmp is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_UsersHomeDirsPermissions","name":"Ensure users'' home directories permissions are 750 or more restrictive","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_UsersOwnTheirHomeDirs","name":"Ensure - users own their home directories","status":"Enabled"}],"autoDiscoveredResources":[],"unmaskedIpLoggingStatus":"Disabled"},"tags":{},"systemData":{"createdBy":"rykelly@microsoft.com","createdByType":"User","createdAt":"2022-02-18T02:33:47.27Z","lastModifiedBy":"rykelly@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-02-18T02:33:50.383Z"}}]}' + users own their home directories","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_Authorization","name":"Review + unauthorized devices","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_SecuredStatePLC","name":"Review + PLC operating mode","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_MissingAuthentication","name":"Set + a secure password for devices with missing authentication","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_WeakPassword","name":"Set + a stronger password with minimum length and complexity","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_BootloaderConfig","name":"Ensure + permissions on bootloader config are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_BootloaderPassword","name":"Ensure + bootloader password is set","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronDailyPermissions","name":"Ensure + permissions on /etc/cron.daily are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronDPermissions","name":"Ensure + permissions on /etc/cron.d are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronHourlyPermissions","name":"Ensure + permissions on /etc/cron.hourly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronMonthlyPermissions","name":"Ensure + permissions on /etc/cron.monthly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCrontabPermissions","name":"Ensure + permissions on /etc/crontab are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronWeeklyPermissions","name":"Ensure + permissions on /etc/cron.weekly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcPasswdGroupsInEtcGroup","name":"Ensure + all groups in /etc/passwd exist in /etc/group","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_InteractiveBootDisabled","name":"Ensure + interactive boot is not enabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_IPv6RouterAdvertisementsBlocked","name":"Ensure + IPv6 router advertisements are not accepted","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevPartitionForHome","name":"Ensure + nodev option set on /home partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevSetOnDevShm","name":"Ensure + nodev option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevSetOnVar","name":"Ensure + nodev option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoDuplicateGroupNames","name":"Ensure + no duplicate group names exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoDuplicateUserNames","name":"Ensure + no duplicate user names exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoexecSetOnDevShm","name":"Ensure + noexec option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoGIDsDuplicates","name":"Ensure + no duplicate GIDs exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidSetOnDevShm","name":"Ensure + nosuid option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidSetOnVar","name":"Ensure + nosuid option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoUIDsDuplicates","name":"Ensure + no duplicate UIDs exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PrelinkDisabled","name":"Ensure + prelink is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_RestrictedDumps","name":"Ensure + core dumps are restricted","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SecuredSystemAccounts","name":"Ensure + system accounts are secured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxAppArmorInstalled","name":"Ensure + SELinux or AppArmor are installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxPolicy","name":"Ensure + SELinux policy is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxStateEnforcing","name":"Ensure + the SELinux state is enforcing","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SeparatePartitionForVarLogAudit","name":"Ensure + separate partition exists for /var/log/audit","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SETroubleshootNotInstalled","name":"Ensure + SETroubleshoot is not installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SingleUserAuthentication","name":"Ensure + authentication required for single user mode","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SshPermitUserEnviromentDisabled","name":"Ensure + SSH PermitUserEnvironment is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SshX11ForwardingDisabled","name":"Ensure + SSH X11 forwarding is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_StrongCiphers","name":"Ensure + only strong Ciphers are used","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_TCPWrappersInstalled","name":"Ensure + TCP Wrappers is installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_XDNXSupport","name":"Ensure + XD/NX support is enabled","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_RockwellCve","name":"Secure + your vulnerable Rockwell devices","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_SiemensCve","name":"Secure + your vulnerable Siemens devices","status":"Enabled"},{"recommendationType":"IoT_Recommendation_SNMP","name":"Remove + insecure administration protocols SNMP V1 and SNMP V2","status":"Enabled"},{"recommendationType":"IoT_Recommendation_Telnet","name":"Disable + insecure administration protocol Telnet","status":"Enabled"}],"autoDiscoveredResources":[],"unmaskedIpLoggingStatus":"Disabled"},"tags":{},"systemData":{"createdBy":"vilit@microsoft.com","createdByType":"User","createdAt":"2022-11-04T17:58:45.403Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:58:50.207Z"}}]}' headers: cache-control: - no-cache content-length: - - '13992' + - '19769' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:33:51 GMT + - Fri, 04 Nov 2022 17:58:51 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff + x-ms-original-request-ids: + - '' + - '' x-ms-ratelimit-remaining-subscription-resource-requests: - '749' status: @@ -1056,12 +1882,12 @@ interactions: ParameterSetName: - --solution-name --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub?api-version=2019-08-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub","type":"Microsoft.Security/iotSecuritySolutions","name":"azurecli-hub","location":"eastus","properties":{"displayName":"Solution + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub","type":"Microsoft.Security/iotSecuritySolutions","name":"azurecli-hub","location":"westeurope","properties":{"displayName":"Solution Default","status":"Enabled","export":[],"disabledDataSources":[],"workspace":null,"additionalWorkspaces":[],"iotHubs":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Devices/IotHubs/azurecli-hub000002"],"userDefinedResources":{"query":null,"querySubscriptions":null},"recommendationsConfiguration":[{"recommendationType":"IoT_ACRAuthentication","name":"Service prinicpal not used with ACR repository","status":"Enabled"},{"recommendationType":"IoT_AgentSendsUnutilizedMessages","name":"Agent sending underutilized messages","status":"Enabled"},{"recommendationType":"IoT_AuditdNotReceived","name":"Auditd @@ -1119,8 +1945,8 @@ interactions: noexec option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoexecOptionOnTmpPartition","name":"Ensure noexec option set on /tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcGroup","name":"Ensure no legacy ''+'' entries exist in /etc/group","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcPasswd","name":"Ensure - no legacy ''+'' entries exist in /etc/passwd","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcShadow","name":" - Ensure no legacy ''+'' entries exist in /etc/shadow","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidOptionOnTmpPartition","name":"Ensure + no legacy ''+'' entries exist in /etc/passwd","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoLegacyPlusEntriesInEtcShadow","name":"Ensure + no legacy ''+'' entries exist in /etc/shadow","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidOptionOnTmpPartition","name":"Ensure nosuid option set on /tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NtpConfigured","name":"Ensure ntp is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PacketRedirectDisabled","name":"Ensure packet redirect sending is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PasswordCreationRequirementsConfigured","name":"Ensure @@ -1158,16 +1984,59 @@ interactions: time synchronization is in use","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_TmpConfigured","name":"Ensure /tmp is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_UsersHomeDirsPermissions","name":"Ensure users'' home directories permissions are 750 or more restrictive","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_UsersOwnTheirHomeDirs","name":"Ensure - users own their home directories","status":"Enabled"}],"autoDiscoveredResources":[],"unmaskedIpLoggingStatus":"Disabled"},"tags":{},"systemData":{"createdBy":"rykelly@microsoft.com","createdByType":"User","createdAt":"2022-02-18T02:33:47.27Z","lastModifiedBy":"rykelly@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-02-18T02:33:50.383Z"}}' + users own their home directories","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_Authorization","name":"Review + unauthorized devices","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_SecuredStatePLC","name":"Review + PLC operating mode","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_MissingAuthentication","name":"Set + a secure password for devices with missing authentication","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_WeakPassword","name":"Set + a stronger password with minimum length and complexity","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_BootloaderConfig","name":"Ensure + permissions on bootloader config are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_BootloaderPassword","name":"Ensure + bootloader password is set","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronDailyPermissions","name":"Ensure + permissions on /etc/cron.daily are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronDPermissions","name":"Ensure + permissions on /etc/cron.d are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronHourlyPermissions","name":"Ensure + permissions on /etc/cron.hourly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronMonthlyPermissions","name":"Ensure + permissions on /etc/cron.monthly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCrontabPermissions","name":"Ensure + permissions on /etc/crontab are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcCronWeeklyPermissions","name":"Ensure + permissions on /etc/cron.weekly are configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_EtcPasswdGroupsInEtcGroup","name":"Ensure + all groups in /etc/passwd exist in /etc/group","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_InteractiveBootDisabled","name":"Ensure + interactive boot is not enabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_IPv6RouterAdvertisementsBlocked","name":"Ensure + IPv6 router advertisements are not accepted","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevPartitionForHome","name":"Ensure + nodev option set on /home partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevSetOnDevShm","name":"Ensure + nodev option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NodevSetOnVar","name":"Ensure + nodev option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoDuplicateGroupNames","name":"Ensure + no duplicate group names exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoDuplicateUserNames","name":"Ensure + no duplicate user names exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoexecSetOnDevShm","name":"Ensure + noexec option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoGIDsDuplicates","name":"Ensure + no duplicate GIDs exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidSetOnDevShm","name":"Ensure + nosuid option set on /dev/shm partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NosuidSetOnVar","name":"Ensure + nosuid option set on /var/tmp partition","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_NoUIDsDuplicates","name":"Ensure + no duplicate UIDs exist","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_PrelinkDisabled","name":"Ensure + prelink is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_RestrictedDumps","name":"Ensure + core dumps are restricted","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SecuredSystemAccounts","name":"Ensure + system accounts are secured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxAppArmorInstalled","name":"Ensure + SELinux or AppArmor are installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxPolicy","name":"Ensure + SELinux policy is configured","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SELinuxStateEnforcing","name":"Ensure + the SELinux state is enforcing","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SeparatePartitionForVarLogAudit","name":"Ensure + separate partition exists for /var/log/audit","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SETroubleshootNotInstalled","name":"Ensure + SETroubleshoot is not installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SingleUserAuthentication","name":"Ensure + authentication required for single user mode","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SshPermitUserEnviromentDisabled","name":"Ensure + SSH PermitUserEnvironment is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_SshX11ForwardingDisabled","name":"Ensure + SSH X11 forwarding is disabled","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_StrongCiphers","name":"Ensure + only strong Ciphers are used","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_TCPWrappersInstalled","name":"Ensure + TCP Wrappers is installed","status":"Enabled"},{"recommendationType":"IoT_CISBenchmarks_XDNXSupport","name":"Ensure + XD/NX support is enabled","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_RockwellCve","name":"Secure + your vulnerable Rockwell devices","status":"Enabled"},{"recommendationType":"IoT_OTRecommendation_SiemensCve","name":"Secure + your vulnerable Siemens devices","status":"Enabled"},{"recommendationType":"IoT_Recommendation_SNMP","name":"Remove + insecure administration protocols SNMP V1 and SNMP V2","status":"Enabled"},{"recommendationType":"IoT_Recommendation_Telnet","name":"Disable + insecure administration protocol Telnet","status":"Enabled"}],"autoDiscoveredResources":[],"unmaskedIpLoggingStatus":"Disabled"},"tags":{},"systemData":{"createdBy":"vilit@microsoft.com","createdByType":"User","createdAt":"2022-11-04T17:58:45.403Z","lastModifiedBy":"vilit@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-11-04T17:58:50.207Z"}}' headers: cache-control: - no-cache content-length: - - '13980' + - '19757' content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:33:52 GMT + - Fri, 04 Nov 2022 17:58:52 GMT expires: - '-1' pragma: @@ -1201,7 +2070,7 @@ interactions: ParameterSetName: - --solution-name --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions/azurecli-hub?api-version=2019-08-01 response: @@ -1213,7 +2082,7 @@ interactions: content-length: - '0' date: - - Fri, 18 Feb 2022 02:33:55 GMT + - Fri, 04 Nov 2022 17:58:56 GMT expires: - '-1' pragma: @@ -1241,7 +2110,7 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.33.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.8.3 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.41.0 azsdk-python-mgmt-security/2.0.0b1 Python/3.9.6 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Security/iotSecuritySolutions?api-version=2019-08-01 response: @@ -1255,7 +2124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 18 Feb 2022 02:33:56 GMT + - Fri, 04 Nov 2022 17:58:56 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_iot_scenario.py b/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_iot_scenario.py index 2e3974f9100..7d401b49498 100644 --- a/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_iot_scenario.py +++ b/src/azure-cli/azure/cli/command_modules/security/tests/latest/test_iot_scenario.py @@ -15,12 +15,12 @@ def test_security_iot(self): self.kwargs.update({ 'iot_hub_name': self.create_random_name(prefix='azurecli-hub', length=24) }) - iot_hub_id = self.cmd('az iot hub create -n {iot_hub_name} -g {rg}').get_output_in_json()['id'] + iot_hub_id = self.cmd('az iot hub create -n {iot_hub_name} -g {rg} -l westeurope').get_output_in_json()['id'] self.kwargs.update({ 'iot_hub_id': iot_hub_id }) - self.cmd('az security iot-solution create --solution-name "azurecli-hub" --resource-group {rg} --iot-hubs {iot_hub_id} --display-name "Solution Default" --location "east us"') + self.cmd('az security iot-solution create --solution-name "azurecli-hub" --resource-group {rg} --iot-hubs {iot_hub_id} --display-name "Solution Default" --location "west europe"') azure_cli_new_iot_security_solution = self.cmd('az security iot-solution list --resource-group {rg}').get_output_in_json() assert len(azure_cli_new_iot_security_solution) == 1 From 771a0dfff5efe12148f595cdc6f36d89ceffc3e8 Mon Sep 17 00:00:00 2001 From: Victoria Litvinova Date: Mon, 7 Nov 2022 12:24:54 -0800 Subject: [PATCH 09/10] add preview to device streams --- src/azure-cli/azure/cli/command_modules/iot/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e735d5618d0..0c3cabac6a6 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/commands.py +++ b/src/azure-cli/azure/cli/command_modules/iot/commands.py @@ -184,7 +184,7 @@ def load_command_table(self, _): # pylint: disable=too-many-statements # iot hub device stream commands with self.command_group('iot hub devicestream', client_factory=iot_hub_service_factory, - min_api="2019-07-01-preview") as g: + min_api="2019-07-01-preview", is_preview=True) as g: g.custom_show_command('show', 'iot_hub_devicestream_show') # iot central commands From 27cb49c52c3eb2458e9b89b7f4417e4c2a8830c4 Mon Sep 17 00:00:00 2001 From: Victoria Litvinova Date: Tue, 8 Nov 2022 11:11:43 -0800 Subject: [PATCH 10/10] add no wait to iot hub create and delete --- src/azure-cli/azure/cli/command_modules/iot/commands.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 0c3cabac6a6..45e98652789 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/commands.py +++ b/src/azure-cli/azure/cli/command_modules/iot/commands.py @@ -122,14 +122,15 @@ def load_command_table(self, _): # pylint: disable=too-many-statements # iot hub commands with self.command_group('iot hub', client_factory=iot_hub_service_factory) as g: - g.custom_command('create', 'iot_hub_create') + g.custom_command('create', 'iot_hub_create', supports_no_wait=True) g.custom_command('list', 'iot_hub_list') g.custom_command('show-connection-string', 'iot_hub_show_connection_string', deprecate_info=self.deprecate(redirect=CS_DEPRECATION_INFO)) g.custom_show_command('show', 'iot_hub_get') g.generic_update_command('update', getter_name='iot_hub_get', setter_name='iot_hub_update', command_type=update_custom_util, custom_func_name='update_iot_hub_custom') - g.custom_command('delete', 'iot_hub_delete', transform=HubDeleteResultTransform(self.cli_ctx)) + g.custom_command('delete', 'iot_hub_delete', transform=HubDeleteResultTransform(self.cli_ctx), + supports_no_wait=True) g.custom_command('list-skus', 'iot_hub_sku_list') g.custom_command('show-quota-metrics', 'iot_hub_get_quota_metrics') g.custom_command('show-stats', 'iot_hub_get_stats')